由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - C++ question
相关主题
C++ 的 问题What're the three types of memory allocated for C++ variables?
请问如何把初始化一个const 的vector (or array) in a class?请教c++ interface class问题
c++ 语法c++里面caveats太多了
c++标准函数传递一问c++ 弱问题:static const char* const 这两个const 分别是什么意思?
[合集] 为什么 const member 不能是 static.C++求助: New/Delete in Multidimensioned array
why use static function here?为什么在overloading中,friend <<不能读取private值呢?
C++ cast 小结这段 C++ 怎么改才能编译?
C++默认的copy constructor的疑惑C++ linking 弱问 (one file)
相关话题的讨论汇总
话题: const话题: static话题: array话题: c++话题: vector
进入Programming版参与讨论
1 (共1页)
w******g
发帖数: 67
1
Hi all,
I want to define one const static vector type member with some initial
value, for example:
const static int array[12] = {-413, -423, -415, -1016, -1026, -417, -411, -
412,
-215, -217, -211, -212};
class VP1TriggerMuonBase
{
public:
const static std::vector pad_exception(array, array+12);
}
But the compiling failed with error. Could anybody correct me?
k****f
发帖数: 3794
2
不能在定义类的时候,给成员变量初始化的。

【在 w******g 的大作中提到】
: Hi all,
: I want to define one const static vector type member with some initial
: value, for example:
: const static int array[12] = {-413, -423, -415, -1016, -1026, -417, -411, -
: 412,
: -215, -217, -211, -212};
: class VP1TriggerMuonBase
: {
: public:
: const static std::vector pad_exception(array, array+12);

t****t
发帖数: 6806
3
actually, you can. but only for integral type (or enumeration); initializer
must be const.
otherwise, must initialize it when you define it.

【在 k****f 的大作中提到】
: 不能在定义类的时候,给成员变量初始化的。
1 (共1页)
进入Programming版参与讨论
相关主题
C++ linking 弱问 (one file)[合集] 为什么 const member 不能是 static.
C++ Function Pointer Array 的问题why use static function here?
Segmentation fault 11 C++C++ cast 小结
Test your C++ knowledge...C++默认的copy constructor的疑惑
C++ 的 问题What're the three types of memory allocated for C++ variables?
请问如何把初始化一个const 的vector (or array) in a class?请教c++ interface class问题
c++ 语法c++里面caveats太多了
c++标准函数传递一问c++ 弱问题:static const char* const 这两个const 分别是什么意思?
相关话题的讨论汇总
话题: const话题: static话题: array话题: c++话题: vector