📄 futures.pas
字号:
unit Futures;
interface
// A "future" is an object that promises to provide a value
// sometime in the future. The value is computed in a background
// thread. When the application needs the value, it requests the
// value from the future--if the future isn't done, the application
// waits until the value is ready.
//
// All the synchronization issues are hidden from the application.
//
// Use the TFuture class by deriving a new class that overrides
// the Compute method.
//
// Copyright
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -