码迷,mamicode.com
首页 > 其他好文 > 详细

输入输出

时间:2016-06-30 12:31:33      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:

 

StringBuilder 5.0

 1 1、StringBuilder()
 2 构造一个空的字符串构造器
 3 2、int length()
 4 返回构造器或缓存器中的代码单元数量
 5 3、StringBuilder append(String str)
 6 追加一个代码单元并返回this
 7 4、StringBuilder appendCodePoint(int cp)
 8 追加一个代码点,并将其转换为一个或两个代码单元并返回this
 9 5、void setCharAt(int i ,char c)
10 将第i个代码单元设置为c
11 6、StringBuilder insert(int offset, String str)
12 在offset位置插入一个字符串并返回this
13 7、StringBuilder insert(int offset, Char c
14 在offset位置插入一个代码单元并返回this
15 8、StringBuilder delete(int startIndex, intendIndex)
16 删除偏移量从startIndex到-endIndex-1的代码单元并返回this
17 9、String toString()
18 返回一个与构造器或缓存器内容相同的字符串

 

读取输入:

Scanner对象:

技术分享
1 Scanner in = new Scanner(System.in);
2 
3 in.nextLine();  //读取一整行
4 in.next();  //读取一个单词,以空格分隔
5 in.nextInt();  //读取一个整数
View Code

 

输入输出

标签:

原文地址:http://www.cnblogs.com/linst/p/5629187.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!