经常会在项目中用到 int to string
#include
#include
#include
using namespace std;
int main(void)
{
ostringstream num;
num << 123;
string str = num.str();
cout << str << endl;
return 0;
}...
分类:
编程语言 时间:
2014-07-22 23:04:54
阅读次数:
283
AlienTech for better life!~...
分类:
其他好文 时间:
2014-05-13 23:41:33
阅读次数:
340
AlienTech for better life!~...
分类:
系统相关 时间:
2014-05-13 14:46:23
阅读次数:
346
AlienTech for better life!~...
分类:
其他好文 时间:
2014-05-13 00:33:20
阅读次数:
329
问题:
包含一个以上虚函数的 class B, 它所定义的 对象是否共用一个虚函数表?
分析: 由于含有虚函数,因此对象内存包含了一个指向虚函数表的指针,但是这个指针指向的是同一个虚函数表吗?
实验如下:
{CSDN:CODE:338780}
结论:
结果表面,同一个类的所有对象,都共享同一个虚函数表。
派生问题:
派生类 和 基类是否共享同一个虚函...
分类:
编程语言 时间:
2014-05-11 22:35:00
阅读次数:
387
AlienTech for better life!~...
分类:
其他好文 时间:
2014-05-10 08:53:18
阅读次数:
382
使用sqlplus登陆oracle数据库时提示“ORA-28002: 7 天之后口令将过期”。
【原因/触发因素】 确定是由于oracle11g中默认在default概要文件中设置了“PASSWORD_LIFE_TIME=180天”所导致。 【影响和风险】
影响 密码过期后,业务进程连接数...
分类:
数据库 时间:
2014-05-09 12:52:44
阅读次数:
432
使用notepad++编辑本地文件 tomcat:
/usr/tomcat/logs/catalina.out {
copytruncate
daily
dateext
nocompress
missingok
}
参考下图部署此文件到linux服务器:...
分类:
系统相关 时间:
2014-05-07 15:43:16
阅读次数:
462
AlienTech for better life!~...
分类:
其他好文 时间:
2014-05-07 06:40:38
阅读次数:
256
Playback control of audio/video files and streams is managed as a state machine. The following diagram shows the life cycle and the states of a MediaPlayer object driven by the supported playback cont...
分类:
移动开发 时间:
2014-05-03 21:36:21
阅读次数:
568