1:char *类型的字符串数字 转化为 int类型

#include<string>
    stringstream test;
    char a[]="-233";
    test<<a;//读取到test
    int b;
    test>>b;//保存到 int b中
    cout<<"b="<<++b<<endl; //b=-232 

2:计算做一件事情 花了多长时间 的 module


    double t = (double)getTickCount();
    // do something ... 需要做的事情
    t = ((double)getTickCount() - t)/getTickFrequency();
    cout << "Times passed in seconds: " << t << endl;
    //getTickFrequency() 为计算机每秒走多少步

猫哥
305 声望44 粉丝

热衷于研究各类互联网技术,热爱学习,热爱生活!