随笔分类 -  C/C++

摘要://并非博主原创,是blogspot上某博主贴出的,忘了具体链接,向原博主表示歉意,有机会补上链接。//速度飞快,甚至比atof()还有快! double str2double(const char *p) { double r = 0.0; bool neg = false; if (*p == 阅读全文
posted @ 2020-09-21 23:24 Craftsman-lee 阅读(400) 评论(0) 推荐(0)
摘要:1 class myClass 2 { 3 public: 4 bool test() { return true; } 5 }; 6 7 int main() 8 { 9 //myClass的一个实例 10 myClass obj; 11 12 //利用std::bind绑定类的成员函数 13 a 阅读全文
posted @ 2020-09-16 19:54 Craftsman-lee 阅读(1377) 评论(0) 推荐(0)