事实证明你大爷还是你大爷
本帖最后由 bin554385863 于 2019-8-15 23:50 编辑#include <iostream>
#include <string>
#include <vector>
#include <cstdio>
int main(int argc, char const *argv[])
{
using namespace std;
string str[] = {"hello world", "hello C++"};
vector<string> svec = {{"fishc"}, {"goodstudy"}};
string *pstr = str;
vector<string> *psvec = &svec;
cout << "pstr---" << pstr << "---" << *pstr << endl;
cout << "pstr+1---" << pstr + 1 << "---" << *(pstr + 1) << endl;
cout << "******************************************" << endl;
cout << "psvec---" << psvec << "---" << svec << endl;
cout << "psvec+1---" << psvec + 1 << "---" << svec << endl;
return 0;
}
==============================================
Microsoft Windows [版本 10.0.16299.1087]
(c) 2017 Microsoft Corporation。保留所有权利。
E:\Users\86184\Documents\Code>c:\Users\86184\.vscode\extensions\ms-vscode.cpptools-0.24.1\debugAdapters\bin\WindowsDebugLauncher.exe --stdin=Microsoft-MIEngine-In-25oahm4e.hfu --stdout=Microsoft-MIEngine-Out-tpj5xvcm.ypw --stderr=Microsoft-MIEngine-Error-2g0dpqct.t25 --pid=Microsoft-MIEngine-Pid-1gn25dyk.jcu "--dbgExe=E:\My Program\MinGW\bin\gdb.exe" --interpreter=mi
pstr---0x62fea0---hello world
pstr+1---0x62feb8---hello C++
******************************************
psvec---0x62fe94---fishc
psvec+1---0x62fea0---goodstudy
E:\Users\86184\Documents\Code>
---------------------------------------------------------------------------------------------
如上,指针还是指针,数组还是数组.
并不因为是C++就没落了{:5_109:}
就是不知道集合vector类型的数组怎么用指针输出
而且vector并不支持定义数组,大概是应为vector自己就是最方便的数组把 vector<string> svec = {{"fishc"}, {"goodstudy"}};
一般都是这样输出更方便的
for(const auto &c:svec)
cout<<c<<endl; 写的不行
页:
[1]