亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java常用API類之如何使用Math System tostring

發布時間:2021-10-25 14:54:28 來源:億速云 閱讀:155 作者:iii 欄目:開發技術

本篇內容介紹了“Java常用API類之如何使用Math System tostring”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

1.注意(類名不能與math重名,否則可能報錯誤)

1.math:可以直接拿來用的接口類

Math.abs(-90);返回參數的絕對值
Math.max(60,98)返回參數的最大值
Math.random()*100隨機函數:隨機輸出一個數
等等

public static void main(String[] args){
        
        int a = 1300, b = 1000;
        System.out.println(Math.abs(-90));
        System.out.println(Math.max(60,98));
System.out.println(Math.random()*100);

        System.out.println(Math.ceil(b));


    }}

結果:

Java常用API類之如何使用Math System tostring

Java常用API類之如何使用Math System tostring

2.System的API:

System.exit(0);// 在這個API下的往下內容java代碼會停止執行
System.currentTimeMillis();//返回與從1970年到現在的毫秒數

public class tyue {



    public static void main(String[] args){


        System.out.println("開始!");

        //System.exit(0);
        System.out.println("結束!");

        System.out.println(System.currentTimeMillis()*1/1000/60/60/24/365+"年");

Long begin=System.currentTimeMillis();
for(int i=0;i<=1000;i++)
{
System.out.println(i);


    }
Long end=System.currentTimeMillis();
System.out.println("共耗時"+(end-begin)+"多少毫秒");



}}

Java常用API類之如何使用Math System tostring

Java常用API類之如何使用Math System tostring

3.object類中的:tostring()方法

如果:直接怎么寫:

zi sc=new zi();

System.out.println(sc);

System.out.println(sc.toString());

打印出:zi@1b6d3586;這樣不易觀察
可以通過:
println
Ctrl+B: 打開方法的聲明處點擊print(這個System.out.println(sc))
可以看到:

public class zi extends Object{

int a=30;
String we="我是說";

    public void show(){


    System.out.println("我是說");

}

}
public static void main(String[] args){

      zi sc=new zi();


      System.out.println(sc);
        System.out.println(sc.toString());
//public void println(Object x) {
//        String s = String.valueOf(x);
//        synchronized (this) {
//            print(s);
//            newLine();
//        }
//    }                 //方法的聲明處  ctrl+b
        /*public static String valueOf(Object obj) {
            return (obj == null) ? "null" : obj.toString();
        }

*/
      sc.show();




    }

Java常用API類之如何使用Math System tostring

可以: Alt+insert(插入鍵(Insert key,縮寫INS)是電腦鍵盤的一個鍵)

Java常用API類之如何使用Math System tostring

選擇toString()

Java常用API類之如何使用Math System tostring

然后全選確認,自動生成

Java常用API類之如何使用Math System tostring

就Ok了

public class zi extends Object{

int a=30;
String we="我是說";


    @Override
    public String toString() {
        return "zi{" +
                "a=" + a +
                ", we='" + we + '\'' +
                '}';
    }

    public void show(){


    System.out.println("我是說");

}

}

重新編譯:得到
zi{a=30, we=‘我是說'} //明顯

Java常用API類之如何使用Math System tostring

到此這篇關于Java常用API類之Math System tostring用法詳解的文章就介紹到這了,更多相關Java 常用API類內容請搜索億速云以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持億速云!

“Java常用API類之如何使用Math System tostring”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

开远市| 博野县| 宁明县| 通道| 保靖县| 横峰县| 密山市| 于田县| 泰和县| 乌鲁木齐市| 林甸县| 固阳县| 河西区| 石景山区| 宁蒗| 西昌市| 高邑县| 无棣县| 兴义市| 澜沧| 二手房| 五莲县| 垫江县| 庄浪县| 高平市| 客服| 平遥县| 城步| 西昌市| 梁平县| 古田县| 许昌县| 阳曲县| 彩票| 博白县| 太仆寺旗| 宁陵县| 西峡县| 土默特右旗| 漳浦县| 平湖市|