📄 constructinjectionbean.java
字号:
package com.injection.bean;
public class ConstructInjectionBean {
private AnotherBean anotherBean;
private YetAnotherBean yetAnotherBean;
private int i;
public ConstructInjectionBean( AnotherBean anotherBean, YetAnotherBean yetAnotherBean, int i) {
this.anotherBean = anotherBean;
this.yetAnotherBean = yetAnotherBean;
this.i = i;
}
public void display() {
System.out.println( "ConstructInjectionBean:" );
System.out.println( this.anotherBean );
System.out.println( this.yetAnotherBean );
System.out.println( i );
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -