• Java Learning (20110810)


    today, after discuss with Martin, learn with another way.
    I start to use chinese material, videos and files, and then explain to Martin. See whether this way is faster.
    ———————-
    identifier (标识符)
    start with letter, underline, $
    legal: userName, User_Name, _sys_value, $change
    illegal: 2mail, room#, class (reserved)
    ———–print format – printf———–
    package ch.allenstudy.newway01;
    public class NameConvention {
    public static void main(String[] args)
    {
    int i = 47;
    System.out.printf(“%d\n”, i);
    System.out.printf(“%x\n”, i);
    System.out.printf(“%#x\n”, i);
    System.out.printf(“%#X\n”, i);
    }
    }

    In Eclipse, run it, hint that has error. Force to run it, got below:
    ————————
    Exception in thread “main” java.lang.Error: Unresolved compilation problems:
    The method printf(String, Object[]) in the type PrintStream is not applicable for the arguments (String, int)
    The method printf(String, Object[]) in the type PrintStream is not applicable for the arguments (String, int)
    The method printf(String, Object[]) in the type PrintStream is not applicable for the arguments (String, int)
    The method printf(String, Object[]) in the type PrintStream is not applicable for the arguments (String, int)

    at ch.allenstudy.newway01.NameConvention.main(NameConvention.java:7)
    ————————–
    But in the video, everything works fine.
    Finally find the solution:
    In Eclipse, Window > Preferences > Java > Compiler. Change the “Compiler compliance level” from default “1.4″ to “6.0″.
    Then no erros.
    Result is as below:
    ———————
    47
    2f
    0x2f
    0X2F
    ———————

    Special character reprensation:
    backslash: \\
    Backspace: \b
    Carriage return: \r
    Tab (Form feed): \t
    New line: \n
    Single quote: \’
    =====================================
    package ch.allenstudy.newway01;
    public class TestPrintf {
    public static void main(String[] args)
    {
    char ch1 = ‘中’;
    char ch2 = ‘\u4e2d’;
    System.out.printf(“%c %c\n”, ch1, ch2);
    }
    }
    Result:
    中 中
    This means that: \u4e2d is an alternative representation of Chinese character 中.
    =====================================
    Diff type variable number scope


     A sample of force conversion:
    —————–
    package ch.allenstudy.newway01;

    public class TestPrintf {
    public static void main(String[] args)
    {
    byte b = 10;
    int i = 6;
    i = b;
    //b = i; //error
    b = (byte) i; //ok, force to convert to byte
    float x;
    //x = 10*0.2; //error, 10*0.2 is double type
    x = 10*0.2f; //ok, “f” means float
    System.out.printf(b+”, “+i+”, “+x);
    }
    }
    Result:
    10, 10, 2.0
    ========================
    package ch.allenstudy.newway01;

    public class TestPrintf {
    public static void main(String[] args)
    {
    int i = -3;
    int j = 11;
    int k = i & j; //3: 00000011 取反 11111101, 11: 00001011
    System.out.printf(“%d\n”, k);
    }
    }
    Result: 9
    Why? 我们一起看看与操作
    11111101
    00001011
    __________
    00001001
    So result is 9.

  • 相关阅读:
    剑指offer-面试题59_2-队列的最大值-队列
    剑指offer-面试题59_1-滑动窗口的最大值-数组
    剑指offer-面试题64-求1+2+...+n-发散思维
    客车网上售票系统之前台订票、退票、改签管理和前台留言管理
    客车网上售票系统之票务管理
    客车网上售票系统项目之留言管理和新闻管理
    客车网上售票系统之用户管理
    客车网上销售系统需求分析及项目燃尽图
    MyBatis-plus逻辑删除
    项目启动注释模板
  • 原文地址:https://www.cnblogs.com/backpacker/p/2262553.html
Copyright © 2020-2023  润新知