C++小程序查错# Programming - 葵花宝典
G*A
1 楼
下面这段程序编译没有错误,执行后windows却弹出错误提示框,请帮我看看怎么回事.谢谢
template
void display(const string &msg, const vector &vec)
{
elemType t = vec[0];
cout< cout< }
int main()
{
string a = "Hello";
vector ivec;
ivec[0] = 7;
display(a, ivec);
return 0;
}
template
void display(const string &msg, const vector
{
elemType t = vec[0];
cout<
int main()
{
string a = "Hello";
vector
ivec[0] = 7;
display(a, ivec);
return 0;
}