⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 futures.pas

📁 Delphi技术手册 附书源码 学习delphi的好帮手!
💻 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 + -