Java copyValueOf() 方法
Java 教程
· 2019-02-08 20:28:59
copyValueOf()
方法有两种形式:
public static String copyValueOf(char[] data): 返回指定数组中表示该字符序列的字符串。
public static String copyValueOf(char[] data, int offset, int count): 返回指定数组中表示该字符序列的 字符串。
语法
public static String copyValueOf(char[] data) 或 public static String copyValueOf(char[] data, int offset, int count)
参数
data -- 字符数组。
offset -- 子数组的初始偏移量。。
count -- 子数组的长度。
返回值
返回指定数组中表示该字符序列的字符串。
实例
public class Test { public static void main(String args[]) { char[] Str1 = {'h', 'e', 'l', 'l', 'o', ' ', 'r', 'u', 'n', 'o', 'o', 'b'}; String Str2 = ""; Str2 = Str2.copyValueOf( Str1 ); System.out.println("返回结果:" + Str2); Str2 = Str2.copyValueOf( Str1, 2, 6 ); System.out.println("返回结果:" + Str2); } }
以上程序执行结果为:
返回结果:hello codercto 返回结果:llo ru
点击查看所有 Java 教程 文章: https://www.codercto.com/courses/l/12.html
Ajax Design Patterns
Michael Mahemoff / O'Reilly Media / 2006-06-29 / USD 44.99
Ajax, or Asynchronous JavaScript and XML, exploded onto the scene in the spring of 2005 and remains the hottest story among web developers. With its rich combination of technologies, Ajax provides a s......一起来看看 《Ajax Design Patterns》 这本书的介绍吧!