欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java常用API类之Math System tostring用法详解

程序员文章站 2022-06-19 15:23:17
1.注意(类名不能与math重名,否则可能报错误)1.math:可以直接拿来用的接口类math.abs(-90);返回参数的绝对值math.max(60,98)返回参数的最大值math.random(...

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类内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!