`
hwy1782
  • 浏览: 150403 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

java修饰符

阅读更多



1.protected 不能修饰类
public class NewTreeSet2 extends NewTreeSet{

	NewTreeSet2 nts = new NewTreeSet2();
	nts.count();
}



//protected 不能修饰 class

protected class NewTreeSet{
	void  count(){
		for(int i = 0; i < 7; i++, i++ ){
			System.out.println(i+" ");
		}
		
	}
}
 

 

 

  • 大小: 67.5 KB
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics