📄 e408.java
字号:
class e408{
public static void main(String args[]) {
String str = "This is the first string.";
String s2= str.concat("ddd");
s2=s2+"FF";
StringBuffer t=new StringBuffer("sss");
//t=t+"dd";
t.append("dd");
System.out.println(s2 + t );
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -