码迷,mamicode.com
首页 > 编程语言 > 详细

C++类内不能用()在非函数内初始化

时间:2020-05-01 01:35:05      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:cpp   class   初始   exp   c++   eric   函数   c++11   ted   

class MyClass
{
   vector<int> MyVector(1000,0);//error: expected identifier before numeric constant vector<int> MyVector(1000,0); 
}

在这里,vector<int> MyVector(1000,0);并不在一个函数里,因此报错。可以用另外的方法,例如花括号列表初始化

class MyClass
{
   vector<int> MyVector{vector<int>(1000,0)}
}

或者用复制初始化

class MyClass
{
   vector<int> MyVector = vector<int>(1000,0); 
}

以上在C++11环境下

C++类内不能用()在非函数内初始化

标签:cpp   class   初始   exp   c++   eric   函数   c++11   ted   

原文地址:https://www.cnblogs.com/drunknbeard/p/12812216.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!