01java语法回顾_常用api类

01Java语法回顾_常用API类


读了那么多年的书让我明白一个道理。人要稳重,不要想到啥就做啥。做一行越久即使你不会,几年之后慢慢的你也会了,加上一点努力你或许你能成为别人眼中的专家。

1:Object(重点)
    toString():为了让对象的显示有意义,一般重写该方法。
    equals():默认比较的是地址值,一般重写该方法,按照自己的需求。
    hashCode() 集合比较会用到。
2:Math
    floor():小于等于参数的最大整数。
    ceil():大于等于参数的最小整数。
    round():四舍五入。+0.5
    random():随机数。[0.0,1.0)
    pow():x的y次方
    sqrt():平方根  素数问题。

3:Random
    nextInt(int n):随机产生[0,n)

4:Scanner
    nextInt():获取int类型
    nextLine():获取String类型

5String(重点)
    把day12总结里面的几种功能补齐中文意思在看一遍。

6:StringBuffer(重点)
    append():添加
    insert():在指定位置添加
    reverse():反转

7:System
    exit():退出

8:Arrays
    sort():排序
    binarySearch():二分查找

9:Integer(重点)
    parseInt(String s):把String -- int

案例一:String与int相互转换

/*
 * int -- String
 *      String.valueOf(int i)
 *      Integer.toString(int i)
 * 
 * String -- int
 *      Integer.parseInt(String s)
 */

String与int相互转换代码测试

public class IntegerDemo {
    public static void main(String[] args) {
        // int -- String
        int num = 100;

        // 方式1
        String s1 = num + "";
        //方式2
        String s2 = String.valueOf(num);
        //方式3
        //int -- Integer -- String
        Integer i = new Integer(num);
        String s3 = i.toString();
        //方式4
        //public static String toString(int i)
        String s4 = Integer.toString(num);


        //String -- int
        String s = "100";
        //方式1
        //String -- Integer -- int
        //public int intValue()
        Integer ii = new Integer(s);
        int number1 = ii.intValue();

        //方式2
        //public static int parseInt(String s)
        int number2 = Integer.parseInt(s);
    }
}

案例二:把字符串数字排序

/*
 * 需求:
 *      我现在有一个字符串"23 98 71 54 60"
 *      请你先办法,把这个字符串变成如下字符串:
 *                 "23 54 60 71 98"
 * 
 * 思路:
 *      A:字符串 -- 字符串数组
 *      B:字符串数组 -- int数组
 *      C:int[]排序
 *      D:把排序后的int[] -- String
 */

把字符串数字排序代码测试

public class StringTest {
    public static void main(String[] args) {
        String s = "23 98 71 54 60";

        // 字符串 -- 字符串数组
        String[] strArray = s.split(" ");
//      System.out.println(strArray.toString());
        // 字符串数组 -- int数组
        int[] arr = new int[strArray.length];

        // 循环遍历赋值
        for (int x = 0; x < arr.length; x++) {
            arr[x] = Integer.parseInt(strArray[x]);
        }

        //int[]排序
        Arrays.sort(arr);

        //把排序后的int[] -- String
        StringBuffer sb = new StringBuffer();
        for(int x=0; x<arr.length ;x++){
            sb.append(arr[x]).append(" ");
        }
        String result = sb.toString().trim();
        System.out.println(result);

    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值