过时小海豚

文章
4
资源
0
加入时间
2年10月20天

DLL的多线程

VC++动态链接库编程之多线程在DLL中可以处理多线程,WIN32对于多线程的支持是操作系统本身提供的一种能力,并不在于用户编写的是哪一类程序。即便是一个控制台程序,我们都可以使用多线程:#include #include void ThreadFun(void){while(1){printf( "this is new thread/n" );Sleep( 100

增强for循环实现原理和for循环实战性能优化

一、增强for循环1. 三种常用for循环// 普通for循环遍历for (int i = 0; i < list.size(); i++) { System.out.print(list.get(i) + ",");}// 迭代器循环遍历Iterator iterator = list.iterator();while (iterator.hasNext()) {...