- 浏览: 340623 次
- 性别:
- 来自: 重庆
文章分类
最新评论
-
hjl0722:
...
Java中的异或 -
lucd:
f(New.<Person, List<Pet&g ...
第15章泛型 -
liujunhao225:
[Error: could not access: List; ...
mvel的使用 -
superscorpio:
public void testImportInContex ...
mvel的使用 -
yuyangtina:
哦,知道了,是继承的方法。谢谢你的分享。
HttpClient3.x发送Soap请求的方法
一、概述
package com.test; /** * * 可以将一个类的定义放在另一个类的内部,这就是内部类。 * * 在拥有外部类对象之前是不可能创建内部类对象的。 * 但是,如果创建的是嵌套类(静态内部类),就不需要外部类对象了。 * @author Administrator * */ public class Parcel2 { class Contents { private int i = 11; public int value() { return i; } } class Destination { private String label; Destination(String whereTo) { label = whereTo; } String readLabel() { return label; } } public Destination to(String s) { return new Destination(s); } public Contents contents() { return new Contents(); } public void ship(String dest) { Contents c = contents(); Destination d = to(dest); System.out.println(d.readLabel()); } public static void main(String[] args) { Parcel2 p = new Parcel2(); p.ship("Tasmania"); Parcel2 q = new Parcel2(); // Defining references to inner classes: Parcel2.Contents c = q.contents(); Parcel2.Destination d = q.to("Borneo"); } }
二、访问外围类的成员
package com.test; interface Selector { boolean end(); Object current(); void next(); } public class Sequence { private Object[] items; private int next = 0; public Sequence(int size) { items = new Object[size]; } public void add(Object x) { if (next < items.length) items[next++] = x; } /** * 内部类自动拥有对其外部类所有成员的访问权,无论是公共还是私有的 * @author Administrator * */ private class SequenceSelector implements Selector { private int i = 0; public boolean end() { return i == items.length; } public Object current() { return items[i]; } public void next() { if (i < items.length) i++; } } public Selector selector() { return new SequenceSelector(); } public static void main(String[] args) { Sequence sequence = new Sequence(10); for (int i = 0; i < 10; i++) sequence.add(Integer.toString(i)); //创建内部类对象,并返回其引用 Selector selector = sequence.selector(); while (!selector.end()) { System.out.print(selector.current() + " "); selector.next(); } } }
三、使用this和new
public class DotThis { private int i=0; public void setI(int i){ this.i=i; } void f() { System.out.println("DotThis.f()"+i); } public class Inner { public DotThis outer() { //通过this可以生成外围类对象的引用 return DotThis.this; // A plain "this" would be Inner's "this" } } public Inner inner() { return new Inner(); } public static void main(String[] args) { DotThis dt = new DotThis(); dt.setI(10); DotThis.Inner dti = dt.inner(); dti.outer().f(); } }package com.test;
public class DotNew { public class Inner { } public static void main(String[] args) { DotNew dn = new DotNew(); //使用new可以在外面创建内部类的对象 //不能使用类名,必须使用对象名创建 DotNew.Inner dni = dn.new Inner(); } }
四、内部类向上转型
下面的代码可以很方便地隐藏实现的细节
class Parcel4 { private class PContents implements Contents { private int i = 11; public int value() { return i; } } protected class PDestination implements Destination { private String label; private PDestination(String whereTo) { label = whereTo; } public String readLabel() { return label; } } public Destination destination(String s) { return new PDestination(s); } public Contents contents() { return new PContents(); } } public class TestParcel { public static void main(String[] args) { Parcel4 p = new Parcel4(); Contents c = p.contents(); Destination d = p.destination("Tasmania"); // Illegal -- can't access private class: //! Parcel4.PContents pc = p.new PContents(); } }
五、在方法作用域内的内部类
public class Parcel5 { /** * 在方法的内部创建类,称为局部内部类 * * @param s * @return */ public Destination destination(String s) { class PDestination implements Destination { private String label; private PDestination(String whereTo) { label = whereTo; } public String readLabel() { return label; } } return new PDestination(s); } public static void main(String[] args) { Parcel5 p = new Parcel5(); // 在方法内定义的内部类对象,方法执行完毕后 // 并不意味着内部类对象就不可用了 Destination d = p.destination("Tasmania"); System.out.println(d.readLabel()); } } /** * 在任意的作用域嵌入内部类 * @author Administrator * */ class Parcel6 { private void internalTracking(boolean b) { if (b) { class TrackingSlip { private String id; TrackingSlip(String s) { id = s; } String getSlip() { return id; } } TrackingSlip ts = new TrackingSlip("slip"); String s = ts.getSlip(); } // Can't use it here! Out of scope: // ! TrackingSlip ts = new TrackingSlip("x"); } public void track() { internalTracking(true); } public static void main(String[] args) { Parcel6 p = new Parcel6(); p.track(); } }
六、匿名内部类
/** * 使用了默认的构造器 * @author Administrator * */ public class Parcel7 { public Contents contents() { return new Contents() { // Insert a class definition private int i = 11; public int value() { return i; } }; // Semicolon required in this case } public static void main(String[] args) { Parcel7 p = new Parcel7(); Contents c = p.contents(); } }
public class Wrapping { private int i; public Wrapping(int x) { i = x; } public int value() { return i; } } public class Parcel8 { public Wrapping wrapping(int x) { // Base constructor call: return new Wrapping(x) { // Pass constructor argument. public int value() { return super.value() * 47; } }; // Semicolon required } public static void main(String[] args) { Parcel8 p = new Parcel8(); Wrapping w = p.wrapping(10); } }/**
* 如果想在匿名内部类中使用外围类的对象 * 那么对象的引用必须是final的 * 当时传递给匿名内部类构造器的参数不必是final的 * * 可以在匿名内部类中进行实例化 * @author Administrator * */ public class Parcel9 { // Argument must be final to use inside // anonymous inner class: public Destination destination(final String dest) { return new Destination() { {System.out.println("sss");} private String label = dest; public String readLabel() { return label; } }; } public static void main(String[] args) { Parcel9 p = new Parcel9(); Destination d = p.destination("Tasmania"); } }
六、嵌套类
/** * 将内部类声明为static,这样的内部类通常称为嵌套类 * 普通内部类对象隐式地保存了一个外围类对象的引用,而内部类没有 * 特点: * 1.创建嵌套类的对象不需要外围类对象; * 2.不能从嵌套类的对象中访问非静态的外围类对象 * 3.普通内部类不能含有static成员; * 4.普通内部类内部也不能声明嵌套类; * @author Administrator * */ public class Parcel11 { private static class ParcelContents implements Contents { private int i = 11; public int value() { return i; } } protected static class ParcelDestination implements Destination { private String label; private ParcelDestination(String whereTo) { label = whereTo; } public String readLabel() { return label; } // Nested classes can contain other static elements: public static void f() { } static int x = 10; static class AnotherLevel { public static void f() { } static int x = 10; } } public static Destination destination(String s) { return new ParcelDestination(s); } public static Contents contents() { return new ParcelContents(); } public static void main(String[] args) { Contents c = contents(); Destination d = destination("Tasmania"); } }
七、接口内部类
/** * 嵌套类可以放到接口中 * 接口中得任何类都自动为public、static * 甚至可以在嵌套类中实现外围接口 * @author Administrator * */ public interface ClassInInterface { void howdy(); class Test implements ClassInInterface { public void howdy() { System.out.println("Howdy!"); } public static void main(String[] args) { new Test().howdy(); } } }
八、多层嵌套内部类
class MNA { private void f() { } class A { private void g() { } public class B { void h() { g(); f(); } } } } /** * 多层内部类 * 它可以透明地访问所有嵌入它的外围类的所有成员 * @author Administrator * */ public class MultiNestingAccess { public static void main(String[] args) { MNA mna = new MNA(); MNA.A mnaa = mna.new A(); MNA.A.B mnaab = mnaa.new B(); mnaab.h(); } }
九、为什么需要内部类
interface A { } interface B { } class X implements A, B { } class Y implements A { B makeB() { // Anonymous inner class: return new B() { }; } } /** * 为什么需要内部类? * 每个内部类都能独立地继承一个实现,所以无论外围类是否已经继承了某个实现,对于内部类都没有影响; * 内部类使得多重继承的解决方案变得完整 * 接口解决了部分问题,内部类有效地实现了多重继承 * @author Administrator * */ public class MultiInterfaces { static void takesA(A a) { } static void takesB(B b) { } public static void main(String[] args) { X x = new X(); Y y = new Y(); takesA(x); takesA(y); takesB(x); takesB(y.makeB()); } }
十、闭包与回调
interface Incrementable { void increment(); } // Very simple to just implement the interface: class Callee1 implements Incrementable { private int i = 0; public void increment() { i++; System.out.println(i); } } class MyIncrement { public void increment() { System.out.println("Other operation"); } static void f(MyIncrement mi) { mi.increment(); } } // If your class must implement increment() in // some other way, you must use an inner class: class Callee2 extends MyIncrement { private int i = 0; public void increment() { super.increment(); i++; System.out.println(i); } /** * 已经继承了MyIncrement类,就不能为了Incrementable的 * 用途而覆盖Increment方法,于是只能使用内部类独立地实现 * Incrementable * @author Administrator * */ private class Closure implements Incrementable { public void increment() { // Specify outer-class method, otherwise // you'd get an infinite recursion: Callee2.this.increment(); } } Incrementable getCallbackReference() { return new Closure(); } } class Caller { private Incrementable callbackReference; Caller(Incrementable cbh) { callbackReference = cbh; } void go() { callbackReference.increment(); } } /** * 闭包(closure),是一个可调用的对象,它记录了一些信息,这些信息来自于创建 * 它的作用域。通过这个定义,可以看出内部类是面向对象的闭包,因为它不仅包含外 * 围类的对象的信息,还自动拥有指向外围类对象的引用,在此作用域内,内部类有权 * 操作所有的成员,包括private。 * @author Administrator * */ public class Callbacks { public static void main(String[] args) { Callee1 c1 = new Callee1(); Callee2 c2 = new Callee2(); MyIncrement.f(c2); Caller caller1 = new Caller(c1); Caller caller2 = new Caller(c2.getCallbackReference()); caller1.go(); caller1.go(); caller2.go(); caller2.go(); } }
十一、内部类的继承
class WithInner { class Inner {} } public class InheritInner extends WithInner.Inner { //! InheritInner() {} // Won't compile InheritInner(WithInner wi) { wi.super(); } public static void main(String[] args) { WithInner wi = new WithInner(); InheritInner ii = new InheritInner(wi); } }
十二、内部类的覆盖
发表评论
-
final变量
2012-07-07 10:47 869final变量必须被初始化,不管是静态的还是非静态的,初始化的 ... -
第12章 异常处理
2012-05-22 13:03 8511.Throwable类是所有异常类的基类,Throwable ... -
线程类中的同步关键字
2012-03-19 17:28 1232public class Constants { publ ... -
第20章注解
2012-03-03 11:32 8651.注解也被称为元数据 ... -
使用Executor
2012-02-29 17:24 1395相关代码: public class CachedThread ... -
死锁的问题
2012-02-29 15:35 9221.某个任务在等待另个任务,而后者有等待别的任务,这样一直下去 ... -
生产者消费者
2012-02-29 11:39 5271. class Meal { private final ... -
第21章 并发
2012-02-22 17:39 9671.基本上所有的并非模式在解决线程冲突问题时,都是采用序列化访 ... -
对象序列化
2012-02-06 17:49 1206当你创建对象时,只要你需要,它就会一直存在,但是在程序终止时, ... -
JAVA IO结构图
2012-02-05 16:00 1271图1 http://blog.sina.com.cn/s/b ... -
第18章IO系统
2012-02-03 18:11 9971. File类既能代表一个文件,也能代表某个目录下文件和子 ... -
第17章容器深入研究
2012-02-02 17:47 9421.List接口的相关方法 1)toArray Object ... -
第11章持有对象
2012-02-01 17:52 10581.向上转型也可作用于泛型(当指定了某个确切类型作为类型参数时 ... -
随机数
2012-01-31 10:23 1259java.util.Random类 1.public Ran ... -
第15章泛型
2012-01-30 17:25 20101.泛型,就是“适用于 ... -
第16章数组
2012-01-29 17:56 9361.数组和其他容器相比是一种效率最高的存储和随机访问对象的方式 ... -
第14章类型信息
2012-01-16 15:27 8391.类是程序的一部分, ... -
第13章 字符串操作
2011-12-14 23:43 9691. public class Concatenation { ... -
Interrupt
2010-11-01 20:36 981interrupt()只是改变中断状态而已 inte ... -
volatile
2010-10-09 09:08 1091以前就看到过Volatile关键字, 只知道跟多线程同步有关, ...
相关推荐
本章我们将深入探讨内部类的种类、用法以及其优势。 1. **成员内部类**: - 成员内部类就像普通类的成员变量一样,可以是静态或非静态的。静态内部类与普通的静态成员类似,不依赖于外部类的实例,而非静态内部类...
《思考Java10:内部类》 在Java编程语言中,内部类是一个强大的特性,它允许我们在一个类的内部定义另一个类。这种设计模式在处理复杂的问题时特别有用,例如事件处理、封装特定功能或者创建匿名类。让我们深入探讨...
内部排序的方法多种多样,根据不同的策略可以分为五类: 1. **插入类排序**:如直接插入排序,它通过将无序序列中的一个或多个记录插入到已排序的部分,逐渐扩大有序序列的长度。在一趟插入排序中,会将当前元素与...
为了遍历 ListArray 中的所有元素,我们可以定义一个内部类,实现之前定义的 Foreach 接口,这个内部类将作为 ListArray 的迭代器。 ```java public class ListArray implements Foreach { private int capacity; ...
### Java语言基础入门教程:内部类与异常处理 #### 一、内部类概述 内部类是在另一个类的内部定义的类。它具有多种类型,并且能够访问外部类的私有成员,这使得内部类在实现特定功能时非常灵活且强大。 #### 二、...
### Java语言基础入门教程:内部类与异常处理 #### 一、内部类概述 内部类是在另一个类的内部定义的类。它具有多种类型,并且能够访问外部类的私有成员,这使得内部类在实现特定功能时非常灵活且强大。 #### 二、...
数据结构:第10章 内部排序.ppt
2. **内部类**:Java允许在类内部定义其他类,包括成员内部类、局部内部类、匿名内部类和静态内部类。这种设计允许更紧密的封装和更复杂的逻辑结构,例如事件监听器的实现。 3. **枚举(Enum)**:枚举是Java中的一...
财务管理第10章内部审计-王宝庆.pptx
数据结构课件:第10章 内部排序 (2).ppt
第10章 static修饰符.pptx 第10章 枚举.pptx 第11章 异常和断言.pptx 第12章 JDK8中的日期.pptx 第12章 字符串、日期.pptx 第13章 容器和泛型.pptx 第14章 流与文件(1).pptx ...第9章 内部类.pptx
#### 第 10 章 内部类 第十章介绍了内部类的概念。内部类是在另一个类的内部定义的类,它可以访问外部类的成员变量甚至是私有变量。本章讨论了成员内部类、局部内部类、静态内部类以及匿名内部类的不同应用场景和...
内部排序通常包括比较型排序和非比较型排序两大类,比较型排序基于元素之间的比较,如冒泡排序、插入排序、选择排序等;非比较型排序则不依赖于元素间的比较,如计数排序、桶排序、基数排序等。 2. **基本排序算法*...
联想维修站的内部发行资料 第一部分 总则 第一章 电脑维修的基本原则...第十一章 兼容类故障 第三部分 附录 硬盘基本知识 挽救硬盘的几个方法 硬盘逻辑锁巧解 WINDOWS蓝色当机画面解读 实用的端口大全(中文版)
本章主要探讨了四个关键知识点。 首先,贷款风险分类的定义与标准。贷款分类是银行根据风险程度,定期对贷款进行评估并划分到不同等级的过程。这包括五个基本类别:正常、关注、次级、可疑和损失。正常类贷款表示...
本章主要涵盖了内部审计报告的定义、编制原则、主要内容、复核制度、相对保证以及结果的交流与沟通。 首先,内部审计报告分为最终报告和期中报告两种类型。最终报告是审计活动的总结,通常包含详尽的审计概况、依据...
"数据结构第八章内部排序" 数据结构第八章内部排序是指在内存中对数据进行排序的算法和技术。本章主要介绍了内部排序的评价指标、稳定性、关键字相同的元素经过排序后相对顺序是否发生改变等概念,并对插入排序、...