我目前正在学习 C++,但遇到了一些麻烦。
我已经通过使用大量开发了一个程序#define
,但我想static const
改用(碰撞/类型/范围......)。
所以,我现在有类似的东西:
file1.hpp
class A {
public:
static const std::string MY_CONST_VAR;
};
file1.cpp
const std::string A::MY_CONST_VAR = "some string";
file2.cpp
static std::string arrayOfString[] = {
A::MY_CONST_VAR,
...
};
我的代码编译时没有警告/错误(使用 -W -Wall -Wextra -Werror 标志编译)。
但是,当我尝试运行它时,会导致段错误。
我用 valgrind 运行它,它给了我以下输出:
==11239== Invalid read of size 4
==11239== at 0x5F525CB: std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(std::string const&) (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.19)
==11239== by 0x40D076: _GLOBAL__sub_I__ZN16GraphicInterface13DEFAULT_WIDTHE (GraphicInterface.cpp:42)
==11239== by 0x51AC7C: __libc_csu_init (in /home/simon/PSU_2013_zappy/gui/gui_zappy)
==11239== by 0x66D8E54: (below main) (libc-start.c:246)
==11239== Address 0xfffffffffffffff8 is not stack'd, malloc'd or (recently) free'd
因此,段错误发生在 arrayOfString 实例化期间。我认为问题在于 arrayOfInt 是在常量之前分配的。但在那种情况下,是否可以为此目的使用 static const ?
我不知道如何修补这个问题。我做错了吗?有更好的方法吗?如何解决这个问题?