博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java程序设计 翻译_java 编程翻译
阅读量:6376 次
发布时间:2019-06-23

本文共 1006 字,大约阅读时间需要 3 分钟。

publicclassExample8_20{publicstaticvoidmain(Stringargs[]){StringBufferstr=newStringBuffer();str.append("大家好");System.out.println("str:"+str);System.out.println("length...

public class Example8_20 {

public static void main(String args[]) {

StringBuffer str=new StringBuffer();

str.append("大家好");

System.out.println("str:"+str);

System.out.println("length:"+str.length());

System.out.println("capacity:"+str.capacity());

str.setCharAt(0 ,'w');

str.setCharAt(1 ,'e');

System.out.println(str);

str.insert(2, " are all");

System.out.println(str);

int index=str.indexOf("好");

str.replace(index,str.length()," right");

System.out.println(str);

}

}

import java.util.*;

public class Example8_12 {

public static void main(String args[]) {

String s="you are welcome(thank you),nice to meet you";

StringTokenizer fenxi=new StringTokenizer(s,"() ,");

int number=fenxi.countTokens();

while(fenxi.hasMoreTokens()) {

String str=fenxi.nextToken();

System.out.print(str+" ");

}

System.out.println("共有单词:"+number+"个");

}

}

展开

转载地址:http://llvqa.baihongyu.com/

你可能感兴趣的文章
软件项目测试作业2
查看>>
[UML]UML系列——类图class的依赖关系
查看>>
初涉WebGL
查看>>
移动开发--移动web特别样式处理
查看>>
插入排序
查看>>
Android的布局优化之include、merge 、viewstub
查看>>
cocos2d-x中的内存管理机制
查看>>
npm下载模块提速方法
查看>>
2017易观OLAP算法大赛
查看>>
QT 4.8 静态库编译方法
查看>>
小程序授权代码示例
查看>>
WinForm中重绘TabControl选项卡标题
查看>>
实验五 数据结构综合应用
查看>>
Error instantiating class com.eaju.pojo.UserInfo with invalid types () or values ()
查看>>
unable to load default svn client
查看>>
数据库相关
查看>>
后缀数组 POJ 1743 Musical Theme
查看>>
python基础——认识(if __name__ == ‘__main__’:)
查看>>
SQL逻辑读变成零
查看>>
css方法 - 移动端h5在iphonex的适配
查看>>