由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - class D:public B;
相关主题
what's the difference between a .cpp file and a compilation unit?Undefined symbols for architecture x86_64: 求助
C++ most vexing parse到底怎么回事?我不太理解unit testable,有人能解释一下什么是unit testable吗?
怎么做C++的unit testing?请教如何unit test for node.js REST+database
如何改变一个文件的UNIT?请教unit test的best practice
菜鸟以为C++的unit test功能没有java强大,是一大缺点unit testing有多么的重要
有没有会自动聚合的操作符重载或宏?自动生成unit test的软件推荐?agitar?
请教一个perl的替换问题。All the men are born equal
大家写unit test的时间会花多少?请问这样的声明表示什么呢?多谢大家
相关话题的讨论汇总
话题: class话题: definition话题: public话题: redundant
进入Programming版参与讨论
1 (共1页)
z****e
发帖数: 2024
1
为什么声明成这样是错误的?
如果错误,如何声明一个类是派生类,而不给出定义?
t****t
发帖数: 6806
2
好象是不可以的.

【在 z****e 的大作中提到】
: 为什么声明成这样是错误的?
: 如果错误,如何声明一个类是派生类,而不给出定义?

z****e
发帖数: 2024
3
居然还有C++不行的。认了。

【在 t****t 的大作中提到】
: 好象是不可以的.
d****p
发帖数: 685
4
If the statement is in the same compilation unit with the class's definition
, it is redundant.
If the declaration and the definition are in different units
....1. If they don't conflict, the declaration is redundant, again :-)
....2. Or, break compilation :-P
The thing is, if you just forward declare a type, you should leave any
definition-related stuff to the actually
definition. The nature of separate compilation units in C++ depends on this.

【在 z****e 的大作中提到】
: 为什么声明成这样是错误的?
: 如果错误,如何声明一个类是派生类,而不给出定义?

t****t
发帖数: 6806
5
why do you want to do this anyway?

【在 z****e 的大作中提到】
: 居然还有C++不行的。认了。
z****e
发帖数: 2024
6
我突然想到一个题目,并没有必须要这样。
读了你的回复,感觉又有了新的理解。

【在 t****t 的大作中提到】
: why do you want to do this anyway?
z****e
发帖数: 2024
7
class k;
class k:public G{};
我发现这样也是对的。继承是在定义时候出现。声明时候不行。
1 (共1页)
进入Programming版参与讨论
相关主题
请问这样的声明表示什么呢?多谢大家菜鸟以为C++的unit test功能没有java强大,是一大缺点
中美两国人民的生活水平到底有多大差距?有没有会自动聚合的操作符重载或宏?
Kinect sells 2.5M in 25 days, consumers are the controller[zz]请教一个perl的替换问题。
想搞class lawsuit的大家写unit test的时间会花多少?
what's the difference between a .cpp file and a compilation unit?Undefined symbols for architecture x86_64: 求助
C++ most vexing parse到底怎么回事?我不太理解unit testable,有人能解释一下什么是unit testable吗?
怎么做C++的unit testing?请教如何unit test for node.js REST+database
如何改变一个文件的UNIT?请教unit test的best practice
相关话题的讨论汇总
话题: class话题: definition话题: public话题: redundant