由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - 菜鸟问题
相关主题
看了zhaoce073大水忍不住说2句问个gwt client code调用远程object的问题
问个基本问题jdbc with access 2000 problem
Complaint about Java class packageRe: 初级问题
请问protected的使用Re: How to use abstract class?
[合集] 谁能解释一下这里的protected specifierRe: question
abstract class 的简单例子Re: Why my url can not open a connection to my servlet in a web browse
Re: Must have public?Re: 如何在两个窗口之间通信?
关于Protected变量Java interview Question(31-50)
相关话题的讨论汇总
话题: package话题: test话题: subclass话题: accessable话题: class
进入Java版参与讨论
1 (共1页)
X**y
发帖数: 63
1
Package test;
class Test
{
xxxxxxx int i;
}
问题:Package test之外能不能有Test的subclass
也就是说,xxxxxx是什么时,i是在package之外不可见的。
private肯定是答案之一,protected呢?
谢谢!
f**t
发帖数: 27
2
protected is accessable by classes in same package and it's subclass
in different package. But once the subclass of different package inherited
the i, it become private. Also, it can only access the i by inheritance, not
by reference.
Aothoer one is default. With no modifier. Only accessable by classes in the
same package (even the subclasses).
That's about it.

【在 X**y 的大作中提到】
: Package test;
: class Test
: {
: xxxxxxx int i;
: }
: 问题:Package test之外能不能有Test的subclass
: 也就是说,xxxxxx是什么时,i是在package之外不可见的。
: private肯定是答案之一,protected呢?
: 谢谢!

c****e
发帖数: 90
3

No matter you replace xxxxx with what, it's not accessible
from outside the package. Because the class itself is not
public, class test.Test can't be seen from other packages.

【在 X**y 的大作中提到】
: Package test;
: class Test
: {
: xxxxxxx int i;
: }
: 问题:Package test之外能不能有Test的subclass
: 也就是说,xxxxxx是什么时,i是在package之外不可见的。
: private肯定是答案之一,protected呢?
: 谢谢!

1 (共1页)
进入Java版参与讨论
相关主题
Java interview Question(31-50)[合集] 谁能解释一下这里的protected specifier
Core Java2 Notes (4)abstract class 的简单例子
问题征解Re: Must have public?
what's inside an java object?关于Protected变量
看了zhaoce073大水忍不住说2句问个gwt client code调用远程object的问题
问个基本问题jdbc with access 2000 problem
Complaint about Java class packageRe: 初级问题
请问protected的使用Re: How to use abstract class?
相关话题的讨论汇总
话题: package话题: test话题: subclass话题: accessable话题: class