printf打印wstring显示不出来,到底是怎么回事
#include “stdafx.h” #include <windows.h> #include <fstream> #include <string> using namespace std; int _tmain(int argc, _TCHAR* argv[]) { wifstream fs……
04-04 立刻查看
函数调用语句能算一个"表达式"吗
函数调用 f(1,2,3) 算是一个expression吗? 看起来函数调用是能产生一个result,并且可以把函数调用作为参数进一步传给其他的函数来使用。 不确定… … 解决方案 8 是… 这些东西明明书上都会写啊 8 函数调用是一个表达式属于后缀表达式 8 一直以来。C,C++函数调用,就是表达式 包括 1)函数名调……
04-04 立刻查看
在构造函数初始值列表中使用 new 是什么意思?相似 :file(new vector)
class Query_result; class Text_query { public: using line_no = vector<std::string>::size_type; Text_query(ifstream&); Query_result query(const string&) c……
04-04 立刻查看
delete指针测试
int *p; p = new int; *p = 3600; cout << *p << endl; cout << p << endl; cout << &p << endl; cout << "删除指针之后 \n"; delete p; c……
04-04 立刻查看