java// 定义一个 runnable
private static Runnable runnable = () -> {
try {
Thread thread = Thread.currentThread();
System.out.printf("name: %s, isVirtual: %b, isDaemon: %b%n", thread.getName(), thread.isVirtual(), thread.isDaemon());
Thread.sleep(Duration.ofSeconds(3));
} catch (Exception ignored) {
}
};
// 通过 Thread 启动虚拟线程和平台线程
public static void thread() {
// Thread.ofVirtual()
Thread thread1 = Thread.ofVirtual().name("thread-1").unstarted(runnable);
Thread thread2 = Thread.ofPlatform().name("thread-2").unstarted(runnable);
thread1.start();
thread2.start();
Thread.ofVirtual().name("thread-3").start(runnable);
Thread.ofPlatform().name("thread-4").start(runnable);
// ThreadFactory
ThreadFactory factory = Thread.ofVirtual().name("thread-v-", 10L).factory();
factory.newThread(runnable).start();
factory.newThread(runnable).start();
ThreadFactory factory2 = Thread.ofPlatform().name("thread-p-", 10L).factory();
factory2.newThread(runnable).start();
factory2.newThread(runnable).start();
// Thread.startVirtualThread()
Thread.startVirtualThread(runnable).setName("startVirtualThread");
}
// 输出结果
/*
name: thread-2, isVirtual: false, isDaemon: false
name: thread-4, isVirtual: false, isDaemon: false
name: thread-3, isVirtual: true, isDaemon: true
name: thread-1, isVirtual: true, isDaemon: true
name: thread-v-10, isVirtual: true, isDaemon: true
name: thread-v-11, isVirtual: true, isDaemon: true
name: startVirtualThread, isVirtual: true, isDaemon: true
name: thread-p-10, isVirtual: false, isDaemon: false
name: thread-p-11, isVirtual: false, isDaemon: false
*/
最近老是在网上看到一些博弈论的名词,瞬间整句话就不认识,记录一下,方便查找:
博弈论矩阵(Game Matrix)
类型 \ 情境 | 合作 | 背叛 | 关系 |
---|---|---|---|
正和博弈 | 双赢 | 双赢 | 非竞争关系 |
零和博弈 | 零和/平局 | 零和/平局 | 竞争关系 |
负和博弈 | 负和/损失 | 负和/损失 | 竞争关系 |
非零和博弈 | 协调/合作 | 冲突/竞争 | 相互冲突/相互协调 |
囚徒困境 | 合作: 4, 4 | 背叛: 1, 5 | 相互冲突/相互协调 |
AI 作为时代的主旋律,了解和学习是必须得
Python是AI的主要编程语言:Python是开发和实施AI算法的首选语言之一。许多重要的AI库和框架,如TensorFlow、PyTorch、scikit-learn等,都是用Python编写的。
丰富的AI库和工具:Python生态系统中有许多用于机器学习、深度学习、自然语言处理(NLP)等领域的优秀库和工具。这些库使你能够快速开发、训练和测试AI模型。
可移植性和跨平台性:Python是跨平台的编程语言,可以在不同操作系统上运行。这使得你可以在不同的环境中部署和运行AI应用程序。