由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - please help C++ beginner
相关主题
请问这是什么错误呀[合集] Java不适合于作为主要编程教学语言by孟岩
xcode for leopard BUG??? help.问-最近几年流行的计算机语言会是什么?想学 (转载)
c warning最近开始接触Objetive C,发现多年的愿望实现了
Why C++11 introduce "decltype" and "auto"?小孩子学哪种编程语言比较好?
珍惜生命,远离 R 和 Go问问学计算机的同学、家长们,现在还有人学PASCAL吗 (转载)
请问一下,用什么语言/库/脚本作GUI比较方便?改写一个project
问个简单的C++问题为什么大家都说c++水很深?
程序员薪水未来ruby能不能挤掉python
相关话题的讨论汇总
话题: type话题: c++话题: array话题: node话题: beginner
进入Programming版参与讨论
1 (共1页)
p****3
发帖数: 32
1
compiling error message:
array.h:61: passing `const array' as `this' argument of `int
array::size () [with Type = v_node]' discards qualifiers
array.h:64: passing `const array' as `this' argument of `Type
array::get (int) [with Type = v_node]' discards qualifiers
part of array.h code here:
template class array
{
protected:
Type* arr; // Pointer to the block where it is stored
int sz; // We will stick to PASCAL convention of
t****t
发帖数: 6806
2
inline int size() const { return sz; }
inline int get(int) const;

【在 p****3 的大作中提到】
: compiling error message:
: array.h:61: passing `const array' as `this' argument of `int
: array::size () [with Type = v_node]' discards qualifiers
: array.h:64: passing `const array' as `this' argument of `Type
: array::get (int) [with Type = v_node]' discards qualifiers
: part of array.h code here:
: template class array
: {
: protected:
: Type* arr; // Pointer to the block where it is stored

r****t
发帖数: 10904
3
这个 code 应该是为 gcc<3 写的。

【在 p****3 的大作中提到】
: compiling error message:
: array.h:61: passing `const array' as `this' argument of `int
: array::size () [with Type = v_node]' discards qualifiers
: array.h:64: passing `const array' as `this' argument of `Type
: array::get (int) [with Type = v_node]' discards qualifiers
: part of array.h code here:
: template class array
: {
: protected:
: Type* arr; // Pointer to the block where it is stored

1 (共1页)
进入Programming版参与讨论
相关主题
未来ruby能不能挤掉python珍惜生命,远离 R 和 Go
痛恨Python的和当年痛恨Java的一个道理请问一下,用什么语言/库/脚本作GUI比较方便?
搞不懂所谓的backend有什么骄傲的?问个简单的C++问题
我来说说python的优点吧程序员薪水
请问这是什么错误呀[合集] Java不适合于作为主要编程教学语言by孟岩
xcode for leopard BUG??? help.问-最近几年流行的计算机语言会是什么?想学 (转载)
c warning最近开始接触Objetive C,发现多年的愿望实现了
Why C++11 introduce "decltype" and "auto"?小孩子学哪种编程语言比较好?
相关话题的讨论汇总
话题: type话题: c++话题: array话题: node话题: beginner