带向量成员的全局结构

Mus*_*afa 4 c++ struct vector

为什么这个简单的代码块没有编译

//using namespace std;
struct test {
    std::vector<int> vec;
};
test mytest;

void foo {
    mytest.vec.push_back(3);
}

int main(int argc, char** argv) {
   cout << "Vector Element" << mytest.vec[0] << endl;
   return 0;
}
Run Code Online (Sandbox Code Playgroud)

我收到以下错误:

vectorScope.cpp:6:5: error: ‘vector’ in namespace ‘std’ does not name a type

vectorScope.cpp:11:6: error: variable or field ‘foo’ declared void

vectorScope.cpp:11:6: warning: extended initializer lists only available with -std=c++0x or -std=gnu++0x [enabled by default]

vectorScope.cpp:12:12: error: ‘struct test’ has no member named ‘vec’

vectorScope.cpp:12:28: error: expected ‘}’ before ‘;’ token

vectorScope.cpp:13:1: error: expected declaration before ‘}’ token
Run Code Online (Sandbox Code Playgroud)

谢谢,

穆斯塔法

bil*_*llz 7

您需要包含矢量头文件

#include <vector>
#include <iostream>

struct test {
    std::vector<int> vec;
};
test mytest;

void foo() {
    mytest.vec.push_back(3);
}

int main(int argc, char** argv) 
{
   foo();  
   if (!mytest.vec.empty())  // it's always good to test container is empty or not
   {
     std::cout << "Vector Element" << mytest.vec[0] << std::endl;
   }
   return 0;
}
Run Code Online (Sandbox Code Playgroud)


goj*_*oji 5

如果您的代码示例是完整的,则您没有包含矢量标头或可能包含 iostream 标头。此外,您的 foo 函数在没有 () 参数的情况下被错误声明:

#include <vector>
#include <iostream>

using namespace std;
struct test {
    std::vector<int> vec;
};
test mytest;

void foo()  {
    mytest.vec.push_back(3);
}

int main(int argc, char** argv) {
   cout << "Vector Element" << mytest.vec[0] << endl;
   return 0;
}
Run Code Online (Sandbox Code Playgroud)

此外,您在索引 0 处为空向量下标,这是未定义的行为。你可能想在这样做之前先调用 foo() ?