STL
mingpingzhang
这个作者很懒,什么都没留下…
展开
-
使用math.h中常用数学常数
在微软提供的math.h文件中定义了很多数学常数,如 M_E,M_PI等,但如果只是使用#include 是无法使用这些常数的,必须在#include 之前加上一句 #define _USE_MATH_DEFINES。因为这些常数不是C/C++标准的一部分。原创 2005-12-02 00:13:00 · 2762 阅读 · 0 评论 -
The Leak of The Memory in C++ 1.2
This articles will show how to avoid the leak of the memory in c++, I just use this articles to summerise something, and show how awesome my English is. If someone need Chinese version, just told me.原创 2014-04-27 22:02:15 · 529 阅读 · 0 评论 -
为stl::string添加split函数
将一个字符串依据一个字符或字符串将其分割为多个字符串是一个常用的字符串操作,但不知为什么STL并没有提供该项操作,于是只好自己动手,如下: templatevector > inline split(const basic_string& source, const basic_string& delimiter){ vector >原创 2010-04-04 11:09:00 · 963 阅读 · 2 评论