上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 39 下一页
摘要: package com.swift; public class String_To_Integer_Test { public static void main(String[] args) { /* * 编程求字符串“100”和“150”按十进制数值做差后的结果以字符串形式输出。 */ Strin... 阅读全文
posted @ 2018-01-16 19:48 Advancing-Swift 阅读(553) 评论(0) 推荐(0) 编辑
摘要: package com.swift; public class ID_Where_Male_Test { public static void main(String[] args) { /* * 中华人民共和国公民身份证号码组成规则是前4位是代表省份和地区(例如4201代表湖北省武汉市), * 第17位代表性别(奇数代表男性)。编... 阅读全文
posted @ 2018-01-16 18:59 Advancing-Swift 阅读(740) 评论(0) 推荐(0) 编辑
摘要: package com.swift; import java.util.Scanner; public class FirstChat_ToCaps_Test { public static void main(String[] args) { /* * 输入英文语句,单词首字符大写后输出 */ ... 阅读全文
posted @ 2018-01-16 18:31 Advancing-Swift 阅读(598) 评论(0) 推荐(0) 编辑
摘要: Map和Collections是同级别的,不能像List排序那样直接用Collections.sort(new Comparator<?>(){ 复写compara方法}); HashMap没有排序 TreeMap默认排序为升序,注意是按键值key排序 根据TreeMap的value来进行排序。对v 阅读全文
posted @ 2018-01-16 11:56 Advancing-Swift 阅读(858) 评论(0) 推荐(0) 编辑
摘要: 上面方法中测试的子串都是从第一个字母开始的,所以并不完全,子串还有很多,还有从第二个字母开始,从第三个字母开始,等等的子字符串 所以,还应该再加一层循环,把substring(开始参数,结束参数)中开始和结束参数都设置为变量,开始参数从0开始到最后一个字母下标,结束参数起始位置要根据开始参数而定,否 阅读全文
posted @ 2018-01-15 20:51 Advancing-Swift 阅读(452) 评论(0) 推荐(0) 编辑
摘要: package com.swift; import java.util.ArrayList; import java.util.List; import java.util.ListIterator; public class ListIterator_baoshu14 { public static void main(String[] args) { /* ... 阅读全文
posted @ 2018-01-15 18:33 Advancing-Swift 阅读(1081) 评论(0) 推荐(0) 编辑
摘要: package com.swift; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; public class TicketSaleCenter { public static void main(String[] args) { ... 阅读全文
posted @ 2018-01-15 12:44 Advancing-Swift 阅读(699) 评论(0) 推荐(0) 编辑
摘要: package com.swift; public class Exception_TestC { public static void main(String[] args) { /* * 第5题: 有一个类为ClassA,有一个类为ClassB,在ClassB中有一个方法b,此方法抛出异常,在ClassA类中有一个 * 方法a... 阅读全文
posted @ 2018-01-14 15:52 Advancing-Swift 阅读(705) 评论(0) 推荐(0) 编辑
摘要: package com.swift; import java.util.HashMap; import java.util.Iterator; import java.util.Map; import java.util.Map.Entry; import java.util.Set; public class Test3_String_char { public static v... 阅读全文
posted @ 2018-01-13 22:38 Advancing-Swift 阅读(387) 评论(0) 推荐(0) 编辑
摘要: 比较器就是个匿名内部类,Collections.sort(list,Comparator<Student>(){}); 然后实现其中的compare方法,返回一个int类型的值,正数 负数 0分别代表大于小于等于 增加IO流的内容代码如下; 阅读全文
posted @ 2018-01-13 17:43 Advancing-Swift 阅读(1923) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 39 下一页