📄 debug3_1.java
字号:
package questions.c3;
public class Debug3_1 {
public static void main( String[] args ) {
StringBuffer wild = "fox";
StringBuffer tame = "dog";
wild = tame;
tame.setCharAt( 0,'c' );
tame.setCharAt( 1,'a' );
tame.setCharAt( 2,'t' );
wild.insert( 1, "wild " );
tame.insert( 1, "pet " );
System.out.println( "A " + wild + " is wild" );
System.out.println( "A " + tame + " is tame" );
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -