passingthisex.java

来自「java编程思想第四版习题答案」· Java 代码 · 共 25 行

JAVA
25
字号
// initialization/PassingThisEx.java
// TIJ4 Chapter Initialization, Exercise 8, page 170
/* Create a class with two methods. Within the first method, call the
* second method twice: the first time without using this, and the second time
* using this - just to see it working; you should not use this form in
* practice.
*/

class Doc {
	void intubate() {
		System.out.println("prepare patient");
		laryngoscopy();
		this.laryngoscopy();
	}
	void laryngoscopy() {
		System.out.println("use laryngoscope");
	}
}
public class PassingThisEx{
	public static void main(String[] args) {
		new Doc().intubate();
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?