10 2018 档案
摘要://callee.h 被调用者 #pragma once void display(); //展示函数 //callee.cpp 被调用者 #include "callee.h" #include <iostream> using namespace std; void display() { co
阅读全文
摘要:上面的self.a()中self是不可缺少的,否则找不到a()的定义,这是和C++/C语言所不同的.
阅读全文
摘要:import time start = time.clock() ...... end = time.clock() print(end - start)
阅读全文