摘要:
运行shell脚本的方式: chmod +x test sh test bash test 查看文件所在路径: which sh 查看具体的信息: ls /usr/bin/sh -l 查看命令历史: history 别名:alias、unalias 前后台作业控制:screen 查看任务:scree 阅读全文
摘要:
class Program { // 使用BeginXXX/EndXXX和IAsyncResult对象的方式被称为异步编程模型(APM模式) delegate string RunOnThreadPool(out int threadId); static void Main(string[] ar 阅读全文
摘要:
原子操作类: public abstract class CounterBase { public abstract void Increase(); public abstract void Decrease(); } public class CounterNoInterlocked : Cou 阅读全文