标签:
单元测试
public class CountDemo{
public void demoCount() throws Exception{
String str=” Hello World My First Unit Test”;
Count count(str);
, }
}
3.
3、public class aa {
public static void main(String[] args) {
// TODO Auto-generated method stub
String str = "how are you";
String strs[] = str.split(" ");
StringBuffer result = new StringBuffer();
for(int i = strs.length-1; i >= 0; i--){
System.out.println(strs[i]);
result .append(" "+strs[i]);
}
System.out.println("倒序:"+result );
}
}
标签:
原文地址:http://www.cnblogs.com/bj941020/p/5361336.html