摘要:
今天开始看编程之美。第一个问题是CPU的使用率控制,微软的问题果然高大上,我一看就傻了,啥也不知道。没追求直接看答案试了一下。发现自己电脑太好了,4核8线程,程序乱飘。加了一个进程绑定,可以控制一个CPU的占有率。代码结果如下:#include"stdio.h"#include void main(){ //前三行可以不要 SYSTEM_INFO SystemInfo; GetSystemInfo(&SystemInfo); int CpuNum=SystemInfo.dwNumberOfProcessors; //获取cpu数目 SetThreadAffinit. 阅读全文