宗策

导航

2019年11月28日 #

StringBuilder修改字符串内容,增,删,改,插

摘要: package seday01;/** * 字符串不变对象特性只针对字符串重用,并没有考虑修改操作的性能.因此String不适合频繁修改内容. * 若有频繁修改操作,使用StringBuilder来完成,它是专门设计出来为了修改字符串内容的,其提供了对字符串内容编辑操作 * 所对应的:增,删,改,插 阅读全文

posted @ 2019-11-28 17:32 宗策 阅读(6527) 评论(0) 推荐(0) 编辑

startsWith(),endsWith()判断当前字符串是否是以给定字符串开始或结尾的

摘要: package seday01;/** * boolean startsWith(String str) * boolean endsWith(String str) * 判断当前字符串是否是以给定字符串开始或结尾的 * @author xingsir * */public class Starts 阅读全文

posted @ 2019-11-28 16:03 宗策 阅读(311) 评论(0) 推荐(0) 编辑

length()返回当前字符串的字符个数

摘要: package seday01;/** * int length() * 返回当前字符串的字符个数 * @author xingsir * */public class LengthDemo { public static void main(String[] args) { String str= 阅读全文

posted @ 2019-11-28 15:45 宗策 阅读(698) 评论(0) 推荐(0) 编辑

indexOf()字符位置

摘要: package seday01; /** * int indexOf(String str) * 查找给定字符串在当前字符串中的位置,若返回值为-1,则 * 表示当前字符串中不含有给定的内容. * @author xingsir * */ public class IndexofDemo { pub 阅读全文

posted @ 2019-11-28 11:35 宗策 阅读(270) 评论(0) 推荐(0) 编辑

charAt()检测回文

摘要: package seday01; /** * char charAt(int index) 返回指定位置对应的字符 * @author xingsir */public class CharAtDemo { public static void main(String[] args) { // 01 阅读全文

posted @ 2019-11-28 11:01 宗策 阅读(214) 评论(0) 推荐(0) 编辑

手把手教你猜字小游戏

摘要: package test07;import java.util.Scanner;//猜字符游戏public class Guessing {//主方法public static void main(String[] args) {Scanner scan = new Scanner(System.i 阅读全文

posted @ 2019-11-28 10:45 宗策 阅读(371) 评论(0) 推荐(0) 编辑