欢迎访问 生活随笔!

凯发k8官方网

当前位置: 凯发k8官方网 > 编程资源 > 编程问答 >内容正文

编程问答

java静态类和非静态类-凯发k8官方网

发布时间:2024/10/14 编程问答 6 豆豆
凯发k8官方网 收集整理的这篇文章主要介绍了 java静态类和非静态类_关于java:静态和非静态内部类的区别? 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

我正在阅读有效的java 2 -项目22,它在标题中写道:

"favor static member classes over non-static"

但是在这一章的结尾

implementations of the collection interfaces, such as set and list,

typically use nonstatic member classes to implement their iterators:

// typical use of a nonstatic member class

public class myset extends abstractset {

... // bulk of the class omitted

public iterator iterator() {

return new myiterator();

}

private class myiterator implements iterator {

...

}

}

我做了一个测试程序,看看它们之间是否有任何区别,这里就是。

public class javaapplication7 {

public static void main(string[] args) {

// todo code application logic here

javaapplication7 t = new javaapplication7();

inner nonstaticobject = t.getaclass();

sinner staticobject = new javaapplication7.sinner();

nonstaticobject.testit();

staticobject.testit();

}

public inner getaclass(){

return new inner();

}

static class sinner{

public void testit(){

system.out.println("i am inner");

}

}

class inner{

public void testit(){

system.out.println("i am inner");

}

}

}

输出是

i am inner

i am inner

所以,他们做了同样的工作。

我想知道为什么在这个例子中使用非静态类?

迭代器通常需要首先引用用于创建它的集合。可以使用一个显式提供了对集合的引用的静态嵌套类来实现这一点,也可以只使用一个隐式引用的内部类。

基本上,如果嵌套类的每个实例都需要一个封闭类的实例来操作(而该实例不变),那么您也可以将其设置为一个内部类。否则,将其设置为静态嵌套类。

区别在于,非静态内部类对包含类具有隐式引用。

public class javaapplication7 {

//you can access this attribute in non-static inner class

private string anyattribute;

public inner getaclass(){

return new inner();

}

static class sinner{

public void testit(){

//here, you cannot access javaapplication7.this

}

}

class inner{

public void testit(){

//here, you can access javaapplication7.this

//you can also access *anyattribute* or call non-static method getaclass()

}

}

}

static与非静态嵌套类的区别在于,非静态嵌套类隐式地与外部类的一个实例相关联,它们可以称为outerclassname.this。此引用在实现迭代器时很有用,因为它们需要访问与其相关的集合的成员。您可以通过使用static嵌套类来实现相同的事情,该类显式地将引用传递给外部类。

in the case of creating instance, the instance of non s

static inner class is created with the reference of

object of outer class in which it is defined……this

means it have inclosing instance …….

but the instance of static inner class

is created with the reference of outer class, not with

the reference of object of outer class…..this means it

have not inclosing instance…

for example……

class a

{

class b

{

// static int x; not allowed here…..

}

static class c

{

static int x; // allowed here

}

}

class test

{

public static void main(string… str)

{

a o=new a();

a.b obj1 =o.new b();//need of inclosing instance

a.c obj2 =new a.c();

// not need of reference of object of outer class….

}

}

没有静态内部类,它是静态嵌套类。"非静态[嵌套]类的每个实例都隐式地与其包含类的封闭实例关联…可以在封闭实例上调用方法。"

静态嵌套类无权访问封闭实例。

参考文献:这条索线

总结

以上是凯发k8官方网为你收集整理的java静态类和非静态类_关于java:静态和非静态内部类的区别?的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得凯发k8官方网网站内容还不错,欢迎将凯发k8官方网推荐给好友。

网站地图