参见C++ Reference:http://www.cplusplus.com/reference/vector/vector/?kw=vector typedef basic_string string; String classStrings are objects that represen...
分类:
其他好文 时间:
2015-05-26 22:54:14
阅读次数:
121
1.find_first_ofsize_type find_first_of( const basic_string &str, size_type index = 0 );size_type find_first_of( const char *str, size_type index = 0 )...
分类:
编程语言 时间:
2015-05-22 00:06:16
阅读次数:
182
error LNK2019: 无法解析的外部符号 "class std::vector,class std::allocator >,class std::allocator,class std::allocator > > > __cdecl Public_Func::split(class
std::basic_string,class std::allocator >,class std...
分类:
其他好文 时间:
2015-05-19 10:30:15
阅读次数:
334
STL 源码剖析
最近打算好好看看STL源码实现...
各种定义找不到头都大了.
首先你需要一个帮手,ctags不行我们就用global(什么东西自己搞定,这么不介绍了).
在STL库的路径下 bits/stringfwd.h你能找到一下定义
你会发现我们常用的标准库类string实质上是basic_string
class string的定义有20...
分类:
其他好文 时间:
2015-03-29 12:15:36
阅读次数:
265
1. size_type find_first_of( const basic_string &str, size_type index = 0 );查找在字符串中第一个与str中的某个字符匹配的字符,返回它的位置。搜索从index开始,如果没找到就返回string::npos2.string& r...
分类:
编程语言 时间:
2015-02-05 21:51:04
阅读次数:
217
1.std::stringstring 是C++中basic_string模板的char类型的实例,在Debian 7.0中,其定义包含在 /usr/include/c++/4.7/bits/stringfwd.hbasic_string模板类在/usr/include/c++/4.7/bits/....
分类:
编程语言 时间:
2015-01-14 00:42:59
阅读次数:
275
有时候在线上使用gdb调试程序core问题时,可能没有符号文件,拿到的仅是一个内存地址,如果这个指向的是一个STL对象,那么如何查看这个对象的内容呢?
只需要知道STL各个容器的数据结构实现,就可以查看其内容。本文描述了SGI STL实现中常用容器的数据结构,以及如何在gdb中查看其内容。
string
string,即basic_string bits/basic_string.h:
m...
分类:
其他好文 时间:
2014-12-03 23:25:58
阅读次数:
356
1
电脑装成Linux之后,在Linux里面装虚拟机运行cocos2d-x-3.2时报如下错误:
plan3d.exe!cocos2d::GLView::initWithRect(const std::basic_string,std::allocator > & viewName, cocos2d::Rect rect,
float frame...
分类:
数据库 时间:
2014-11-27 06:49:13
阅读次数:
178
#pragma once#include #include typedef std::basic_string tstring;class CIniCfg{public: CIniCfg() { TCHAR szTemp[MAX_PATH]; GetMo...
分类:
编程语言 时间:
2014-10-21 00:43:30
阅读次数:
161
导入一个静态库的时候,发现一系列错误Undefined symbols for architecture armv7: "std::string::resize(unsigned long, char)", referenced from:类似这样的 最后在网上找了好多文章 有这篇http://st...
分类:
其他好文 时间:
2014-09-28 18:51:33
阅读次数:
188