摘要:
方法一:View Code #include <time.h>#include <stdio.h>void main( void ){time_t ltime;time( <ime );printf( "The time is %s\n", ctime(<ime ) );}方法二:struct timeval start;struct timeval end;float time_use = 0;gettimeofday(&start,NULL); //do some operationgettimeofday(&am 阅读全文
摘要:
1、给string赋char*型值,通过以下方式: 构造函数 string ( const char * s, size_t n ); string ( const char * s ); //要求s指向的C风格的字符串必须以'\0'结尾。 或用assign: string& assign ( const char* s, size_t n ); string& assign ( co... 阅读全文
摘要:
1、使用printf应当说是类型不安全的。所以才引入了C++的流输入输出。 比如: #include "stdint.h" #include "iostream" using namespace std; int main() { int64_t a = 1; int b = 2; uint32_t uin... 阅读全文