1. fas
  2. 第二题
    package net.mindview.strings;
    
    import java.util.ArrayList;
    import java.util.List; /**
    * 无限循环
    */
    public class InfiniteRecursion {
    public InfiniteRecursion(){ }
    @Override
    public String toString() {
    return " InfiniteRecursion address" + super.toString() + "\n";
    }
    public static void main(String[] args) {
    List<InfiniteRecursion> list = new ArrayList<InfiniteRecursion>();
    for(int i=; i<; i++){
    list.add(new InfiniteRecursion());
    }
    System.out.println(list);
    }
    }
  3. fa
  4. 第四题
    package net.mindview.strings;
    
    import java.util.Formatter;
    
    public class Receipt {
    private double total = ;
    private Formatter f = new Formatter(System.out);
    public final int ITEM_WIDTH = ;
    public final int QTY_WIDTH = ;
    public final int PRICE_WIDTH = ;
    public final int PRICISION_FLOAT_WIDHT = ;
    public final int PRICISION_String_WIDHT = ;
    public final String TITLE_FORMAT = "%-" + ITEM_WIDTH + "s %" + QTY_WIDTH
    + "s %" + PRICE_WIDTH + "s\n";
    public final String PRICE_FORMAT = "%-" + ITEM_WIDTH + "."
    + PRICISION_String_WIDHT + "s %" + QTY_WIDTH + "d %" + PRICE_WIDTH
    + "." + PRICISION_FLOAT_WIDHT + "f\n";
    public final String TOTAL_FORMAT = "%-" + ITEM_WIDTH + "s %" + QTY_WIDTH
    + "s %" + PRICE_WIDTH + "." + PRICISION_FLOAT_WIDHT + "f\n"; //打印标题
    public void printTitle(){
    /*
    * 含义: 格式化字符串串以%开头
    * -: 表示左对齐
    * 15: 15表示宽度
    * s:表示数据的类型是String
    * .2f:表示浮点数保留的小数位数
    * .15s:表示字符串的长度最多15个字符
    */
    f.format(TITLE_FORMAT, "Item", "Qty", "Price");
    f.format(TITLE_FORMAT, "----", "---", "-----");
    } //正文的内容
    public void print(String name, int qty, double price){
    f.format(PRICE_FORMAT, name, qty, price);
    total += price;
    } //总价
    public void printTotal(){
    f.format(TOTAL_FORMAT, "Tax", "", total*0.06);
    f.format(TITLE_FORMAT, "", "", "-----");
    f.format(TOTAL_FORMAT, "Total", "", total*1.06);
    } public static void main(String[] args) {
    Receipt receipt = new Receipt();
    receipt.printTitle();
    receipt.print("Jack`s Magic Beans", , 4.25);
    receipt.print("Princess Peas", , 5.1);
    receipt.print("Three Bears Porridge", , 14.29);
    receipt.printTotal();
    } }

    运行结果:

    Item              Qty      Price
    ---- --- -----
    Jack`s Magic Be 4.25
    Princess Peas 5.10
    Three Bears Por 14.29
    Tax 1.42
    -----
    Total 25.06
  5. 第五题
    package net.mindview.strings;
    
    import java.util.Formatter;
    
    public class Receipt {
    private double total = ;
    private Formatter f = new Formatter(System.out);
    public final int ITEM_WIDTH = ;
    public final int QTY_WIDTH = ;
    public final int PRICE_WIDTH = ;
    public final int PRICISION_FLOAT_WIDHT = ;
    public final int PRICISION_String_WIDHT = ;
    public final String TITLE_FORMAT = "%-" + ITEM_WIDTH + "s %" + QTY_WIDTH
    + "s %" + PRICE_WIDTH + "s\n";
    public final String PRICE_FORMAT = "%-" + ITEM_WIDTH + "."
    + PRICISION_String_WIDHT + "s %" + QTY_WIDTH + "d %" + PRICE_WIDTH
    + "." + PRICISION_FLOAT_WIDHT + "f\n";
    public final String TOTAL_FORMAT = "%-" + ITEM_WIDTH + "s %" + QTY_WIDTH
    + "s %" + PRICE_WIDTH + "." + PRICISION_FLOAT_WIDHT + "f\n"; //打印标题
    public void printTitle(){
    /*
    * 含义: 格式化字符串串以%开头
    * -: 表示左对齐
    * 15: 15表示宽度
    * s:表示数据的类型是String
    * .2f:表示浮点数保留的小数位数
    * .15s:表示字符串的长度最多15个字符
    */
    f.format(TITLE_FORMAT, "Item", "Qty", "Price");
    f.format(TITLE_FORMAT, "----", "---", "-----");
    } //正文的内容
    public void print(String name, int qty, double price){
    f.format(PRICE_FORMAT, name, qty, price);
    total += price;
    } //总价
    public void printTotal(){
    f.format(TOTAL_FORMAT, "Tax", "", total*0.06);
    f.format(TITLE_FORMAT, "", "", "-----");
    f.format(TOTAL_FORMAT, "Total", "", total*1.06);
    } public static void main(String[] args) {
    Receipt receipt = new Receipt();
    receipt.printTitle();
    receipt.print("Jack`s Magic Beans", , 4.25);
    receipt.print("Princess Peas", , 5.1);
    receipt.print("Three Bears Porridge", , 14.29);
    receipt.printTotal();
    } }

    运行结果:

    Item              Qty      Price
    ---- --- -----
    Jack`s Magic Be 4.25
    Princess Peas 5.10
    Three Bears Por 14.29
    Tax 1.42
    -----
    Total 25.06
  6. afd
  7. 第七题:
    package net.mindview.strings.test7;
    
    public class Test7 {
    
        public static void main(String[] args) {
    //两种写法都可以
    String regex = "^[A-Z].*\\.$";
    String regex1 = "\\p{Upper}.*\\.$";
    String str = "D.";
    String str1 = "Dfasdfasfasfdasfdasfasfasdf.";
    String str2 = "Dfasdfasfasfdasfdasfasfasdf.E";
    System.out.println(str.matches(regex));
    System.out.println(str1.matches(regex));
    System.out.println(str2.matches(regex));
    System.out.println(str.matches(regex1));
    System.out.println(str1.matches(regex1));
    System.out.println(str2.matches(regex1));
    }
    }

    运行结果:

    true
    true
    false
    true
    true
    false
  8. 第八题
    package net.mindview.strings;
    
    import java.util.Arrays;
    
    public class Splitting {
    
        public static String knights = "Then, when you have found the shrubbery, you must cut down the mightiest tree in the forest... with... a herring!";
    
        public static void split(String regex){
    System.out.println(Arrays.toString(knights.split(regex)));
    }
    public static void main(String[] args) {
    //表示的时按照空格分割字符串
    //运行结果:[Then,, when, you, have, found, the, shrubbery,, you, must, cut, down, the, mightiest, tree, in, the, forest..., with..., a, herring!]
    split(" "); //表示按照非单次字符分割字符串--这里的非单次字符是空格和,
    //运行结果:[Then, when, you, have, found, the, shrubbery, you, must, cut, down, the, mightiest, tree, in, the, forest, with, a, herring]
    split("\\W+");
    //这个表示:费单次字符之前带n的地方进行分割字符串 这里的分割符是n空格和n,
    //运行结果:[The, whe, you have found the shrubbery, you must cut dow, the mightiest tree i, the forest... with... a herring!]
    split("n\\W+");
    } }
    package net.mindview.strings.test8;
    
    import net.mindview.strings.Splitting;
    
    public class Test8 {
    
        public static void main(String[] args) {
    String regex = "the|you";
    Splitting.split(regex);
    }
    }
  9. 第九题
    package net.mindview.strings.test9;
    
    import net.mindview.strings.Splitting;
    
    public class Test9 {
    public static void main(String[] args) {
    String regex = "A|E|I|O|U|a|e|i|o|u";
    //通过嵌入式标志表达式 (?i) 也可以启用不区分大小写的匹配。
    String regex1 = "(?i)a|e|i|o|u";
    //[abc] 表示a或b或c
    String regex2 = "(?i)[aeiou]";
    System.out.println(Splitting.knights.replaceAll(regex, "_"));
    System.out.println(Splitting.knights.replaceAll(regex1, "_"));
    System.out.println(Splitting.knights.replaceAll(regex2, "_"));
    }
    }
  10. 第十题
    package net.mindview.strings.test10;
    
    import java.util.regex.Matcher;
    import java.util.regex.Pattern; public class Test10 {
    public static void main(String[] args) {
    String str = "Java now has regular expressions"; for(String arg: args){
    Pattern p = Pattern.compile(arg);
    Matcher m = p.matcher(str);
    while(m.find()){
    System.out.println("Match \"" + m.group() +"\" at positions " + m.start() + "-" + (m.end()-) );
    }
    System.out.println("\n");
    } }
    }

    输入参数:

    ^Java
    \Breg.*
    n.w\s+h(a|i)s
    s?
    s*
    s+
    s{}
    s{}.
    s{,}

    输出结果

    Match "Java" at positions -
    
    Match "now has" at positions -
    
    Match "" at positions --
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "s" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "s" at positions -
    Match "s" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "s" at positions -
    Match "" at positions - Match "s" at positions -
    Match "ss" at positions -
    Match "s" at positions - Match "s " at positions -
    Match "ss" at positions - Match "" at positions --
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "s" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "ss" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "" at positions -
    Match "s" at positions -
    Match "" at positions -
  11. 第十一题
    package net.mindview.strings.test11;
    
    import java.util.regex.Matcher;
    import java.util.regex.Pattern; public class Test11 {
    public static void main(String[] args) {
    Pattern p = Pattern.compile("(?i)((^[aeiou])|(\\s+[aeiou]))\\w+?[aeiou]\\b");
    Matcher m = p.matcher("Arline ate eight apples and " +
    "one orange while Anita hadn't any"); while(m.find()){
    System.out.println("Match \"" + m.group() +
    "\" at positions " + m.start() + "-" +
    (m.end() - ));
    }
    }
    }

    运行结果:

    Match "Arline" at positions -
    Match " ate" at positions -
    Match " one" at positions -
    Match " orange" at positions -
    Match " Anita" at positions -
  12. sfa
  13. f
  14. a
  15. fda
  16. sdf
  17. af
  18. a
  19. fd
  20. af
  21. as
  22. fd
  23. asfd
  24. af
  25. da
  26. f
  27. df
  28. as
  29. fa
  30. sf
  31. asf
  32. a
  33. sf
  34. af
  35. asf

java编程思想第四版第十三章字符串 习题的更多相关文章

  1. java编程思想第四版第十三章字符串 总结

    1. String和StringBulider的使用 通过书中介绍, 我们得知如下结论: 当使用+连接符将字符串进行拼接的时候, 编译器会进行自动优化为使用StringBuilder连接字符串. 当在 ...

  2. java编程思想第四版第三章要点习题

    使用"简短的" 和正常的 打印语句来编写一个程序 package net.mindview.util; public class Print { /** * 不带有回车 * @pa ...

  3. java编程思想第四版第十一章习题

    第一题 package net.mindview.holding.test1; import java.util.ArrayList; import java.util.List; /** * 沙鼠 ...

  4. Java编程思想第四版*第七章*个人练习

    欢迎加群:239063848 成团的笔记:该组仅用于技术共享和交流,问题和答案公布 潘基聊天.禁止广告.禁止招聘-- 练习1:(2)创建一个简单的类.第二个类中,将一个引用定义为第一个类的对象.运用惰 ...

  5. java编程思想第四版第六章习题

    (略) (略) 创建两个包:debug和debugoff,他们都包含一个相同的类,该类有一个debug()方法,第一个版本显示发送给控制台的String参数,而第二版本什么也不做,使用静态import ...

  6. java编程思想第四版第六章总结

    1. 代码重构 为什么f要代码重构 第一次代码不一定是完美的, 总会发现更优雅的写法. 代码重构需要考虑的问题 类库的修改不会破坏客户端程序员的代码. 源程序方便扩展和优化 2. 包 创建一个独一无二 ...

  7. java编程思想第四版第五章习题

    创建一个类, 它包含一个未初始化的String引用.验证该引用被Java初始化成了null package net.mindview.initialization; public class Test ...

  8. java编程思想 第四版 第六章 个人练习

    欢迎加群:239063848 进群须知:本群仅用于技术分享与交流.问题公布与解答 禁止闲聊.非诚勿扰 练习1:(1)在某个包中创建一个类,在这个类所处的包的外部创建该类的一个实例. import mi ...

  9. java编程思想第四版第十一章总结

    1. 容器类被分为两类:Collection和Map Collection是一个接口:包括: List接口: ArrayList:按照被插入顺序保存元素, 查询快, 增删改慢 LinkedList:按 ...

随机推荐

  1. 攻防世界(XCTF)WEB(进阶区)write up(二)

    国庆就要莫得了   起床刷几道 NewsCenter mfw Training-WWW-Robots NaNNaNNaNNaN-Batman bug NewsCenter search传参那里发现有注 ...

  2. 8种常见的SQL错误用法

    常见SQL错误用法 1. LIMIT 语句 分页查询是最常用的场景之一,但也通常也是最容易出问题的地方.比如对于下面简单的语句,一般DBA想到的办法是在type, name, create_time字 ...

  3. HDU 5616 Jam's balance(01背包)

    题目网址:http://acm.hdu.edu.cn/showproblem.php?pid=5616 题目: Jam's balance Time Limit: 2000/1000 MS (Java ...

  4. 1.Linux-CentOS7.6安装教程

    了解Linux Linux 就是一个操作系统,主要为企业提供支持与服务. 学习Linux需要具备什么基础?能看懂中文,能看懂简单的 English ​ 1.什么是Linux? Linux:和我们常见的 ...

  5. Juc1024小半年总结-面试篇

    大家好,我叫Juc 这大概是我时隔2年度多 第一次以分享的形式发的第一篇公众号 今天是2019年10月26 本想在10月24就分享一下 可惜前面两天时间太忙... 很凑巧,今天我出来工作刚好满4个月, ...

  6. 百万年薪python之路 -- 包

    包 使用import 和from xx import xx 现有如下结构 bake ├── __init__.py ├── api ├── __init__.py ├── policy.py └── ...

  7. IOT设备的7大安全问题

    IOT设备的7大安全问题 串口安全 IOT设备一般包含各类串口,并且这些串口缺乏认证机制.一旦暴露给了hacker,hacker可以很容易的查找敏感信息和dump固件,从而导致各类安全问题.建议厂家在 ...

  8. Java 在PDF中添加页面跳转按钮

    在PDF 中可通过按钮来添加动作跳转到指定页面,包括跳转到文档首页.文档末页.跳转到上一页.下一页.或跳转到指定页面等.下面将通过java代码来演示如何添加具有以上几种功能的按钮. 使用工具: Fre ...

  9. Java多线程编程(一)Java多线程技能

    一.进程和多线程的概念以及线程的优点 打开Windo任务管理器可以看到很多正在运行着的exe程序,完全可以将运行在内存中的exe文件理解成进程,进程是受操作系统管理的基本运行单元. 线程可以理解成在进 ...

  10. UI控件拖动失效

    问题描述:ui Slider滑块点击时需要特效,直接在滑块上添加OnPointerDown事件与OnPointerUp事件,但是当拖动时会直接触发OnPointerUp事件,而且拖动相关的事件失效 原 ...