【发布时间】:2015-10-03 05:46:45
【问题描述】:
class BTNode
{
BTNode left, right;
int data;
//constructors and methods
}
在这段代码中没有使用特定的修饰符。那么在修饰符的上下文中会发生什么?他们有什么默认行为吗?
【问题讨论】:
class BTNode
{
BTNode left, right;
int data;
//constructors and methods
}
在这段代码中没有使用特定的修饰符。那么在修饰符的上下文中会发生什么?他们有什么默认行为吗?
【问题讨论】:
【讨论】: