【问题标题】:C++ std:vector< T* const>C++ 标准:向量<T* const>
【发布时间】:2013-05-06 00:08:29
【问题描述】:

我必须继续一个程序。我之前的程序员使用的结构很多:

std:vector< T* const>

他在 Visual Studio C++ 2010 中编写了 ist 并且能够编译它。我正在使用 g++,它会引发一些编译错误。

    g++ -g -Wall -c -std=c++11 -pedantic -I/usr/include/SuperLU/ src/Cell.cpp -o obj/Cell.o
In file included from src/Cell.cpp:13:0:
src/Cell.h:81:2: warning: extra ';' [-pedantic]
In file included from /usr/include/x86_64-linux-gnu/c++/4.7/./bits/c++allocator.h:34:0,
                 from /usr/include/c++/4.7/bits/allocator.h:48,
                 from /usr/include/c++/4.7/string:43,
                 from /usr/include/c++/4.7/bits/locale_classes.h:42,
                 from /usr/include/c++/4.7/bits/ios_base.h:43,
                 from /usr/include/c++/4.7/ios:43,
                 from /usr/include/c++/4.7/ostream:40,
                 from /usr/include/c++/4.7/iostream:40,
                 from src/Cell.cpp:2:
/usr/include/c++/4.7/ext/new_allocator.h: In instantiation of 'struct __gnu_cxx::new_allocator<BattPackage::Leg* const>':
/usr/include/c++/4.7/bits/allocator.h:89:11:   required from 'class std::allocator<BattPackage::Leg* const>'
/usr/include/c++/4.7/bits/alloc_traits.h:92:43:   required from 'struct std::allocator_traits<std::allocator<BattPackage::Leg* const> >'
/usr/include/c++/4.7/ext/alloc_traits.h:110:10:   required from 'struct __gnu_cxx::__alloc_traits<std::allocator<BattPackage::Leg* const> >'
/usr/include/c++/4.7/bits/stl_vector.h:76:28:   required from 'struct std::_Vector_base<BattPackage::Leg* const, std::allocator<BattPackage::Leg* const> >'
/usr/include/c++/4.7/bits/stl_vector.h:208:11:   required from 'class std::vector<BattPackage::Leg* const>'
src/Cell.h:283:39:   required from here
/usr/include/c++/4.7/ext/new_allocator.h:83:7: error: 'const _Tp* __gnu_cxx::new_allocator<_Tp>::address(__gnu_cxx::new_allocator<_Tp>::const_reference) const [with _Tp = BattPackage::Leg* const; __gnu_cxx::new_allocator<_Tp>::const_pointer = BattPackage::Leg* const*; __gnu_cxx::new_allocator<_Tp>::const_reference = BattPackage::Leg* const&]' cannot be overloaded
/usr/include/c++/4.7/ext/new_allocator.h:79:7: error: with '_Tp* __gnu_cxx::new_allocator<_Tp>::address(__gnu_cxx::new_allocator<_Tp>::reference) const [with _Tp = BattPackage::Leg* const; __gnu_cxx::new_allocator<_Tp>::pointer = BattPackage::Leg* const*; __gnu_cxx::new_allocator<_Tp>::reference = BattPackage::Leg* const&]

他想要这个结构是一个指针向量,他可以在其中添加和删除指针并操作指针的目标,但不能更改指针指向的对象。

据我了解,它不应该编译,因为 T* const 不可赋值。

有谁知道它为什么在 Visual Studio 中编译? 我可以在声明中替换它而不需要更改完整的代码吗?

【问题讨论】:

    标签: c++ pointers vector constants


    【解决方案1】:

    std::vector 使用分配器为其成员分配、重新分配和释放内存。分配器要求仅针对 T 类型的分配器 X 定义,其中 T 是“任何非常量、非引用对象类型”(C++11 表 27)。所以使用 std::vector&lt;T* const&gt; 会给你带来未定义的行为,因为它使用的分配器没有为 const 元素类型定义。

    您最好尽快解决此问题。将声明更改为 std::vector&lt;T*&gt; 不太可能有很多问题。

    【讨论】:

    • 那为什么VS编译器检测不到这个问题,是编译器的bug吗?
    • @shivakumar 这是未定义的行为。任何事情都有可能发生。它只是默默地忽略它并不是一个错误。
    • 好吧,这符合我的想法,为什么它会失败。所以你认为 VS 只是假设 std::vector ?
    猜你喜欢
    • 2015-02-17
    • 1970-01-01
    • 1970-01-01
    • 2011-01-18
    • 2014-06-02
    • 2011-07-08
    • 1970-01-01
    • 2016-09-26
    • 2016-06-06
    相关资源
    最近更新 更多