用 Java 中存储在类型为 String 的变量中的引用创建一个 StringBuffer 对象
要创建一个 StringBuffer 对象,我们使用以下语法 −
StringBuffer s=new StringBuffer();
当我们创建对一个对象的引用时,我们使用赋值运算符。例如,
String s1 = ”hi”; String s2 = s1; // s2 is a reference of s1
下面给出了一个程序,来说明如何使用存储在类型为 String 的变量中的引用来创建 StringBuffer 对象 −
示例
public class Example { public static void main(String args[]) { String input = "hey"; String s1 = input; // creating a reference of the String StringBuffer s = new StringBuffer(s1); System.out.println(s); } }
输出
输出如下 −
Hey
广告