博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
作业 回文和重载
阅读量:6094 次
发布时间:2019-06-20

本文共 1075 字,大约阅读时间需要 3 分钟。

1 重载问题

public class MethodOverload {	public static void main(String[] args) {		System.out.println("The square of integer 7 is " + square(7));		System.out.println("\nThe square of double 7.5 is " + square(7.5));	}	public static int square(int x) {		return x * x;	}	public static double square(double y) {		return y * y;	}}

 

  

这是一个重载问题满足一下两个条件可重载

(1)方法名相同;

(2)参数类型不同,参数个数不同,或者是参数类型的顺序不同。

2 随机数生成器

 

package 随机数生成器;public class Shuiji {public static void main(String[] args) {      int n=1000;    Creat(n);  }  static BigInteger Creat(int n) {    BigInteger result;    if(n==1) {;      result=BigInteger.valueOf((int)Math.random()*100000+1);      System.out.println("第1个随机数是"+result);      return result;    }    else {      BigInteger i=Creat(n-1).multiply(BigInteger.valueOf(16807));      result=i.mod(BigInteger.valueOf(Integer.MAX_VALUE));Creat(n-      System.out.println("第"+n+"个随机数是"+result);      return result;    }  }}

 

  

 

 

3  JDK中System.out.println()方法:

 

System.out.println()方法有很多种重载,如char,int,long,string等等,当不调用参数时,其输出换行符。

  

转载于:https://www.cnblogs.com/xuange1/p/9784477.html

你可能感兴趣的文章
崛起中的九大HTML5开发工具
查看>>
linux下svn命令使用大全:二
查看>>
ARp欺骗
查看>>
myeclipse10.0优化
查看>>
LVM
查看>>
mysql数据的binlog处理方法
查看>>
Centos7搭建yum本地源
查看>>
我的友情链接
查看>>
mysql 主从分离 读写分离(mysql-proxy)
查看>>
linux笔记 1-11-系统日志之时间同步
查看>>
剑指,offer10
查看>>
FreeMarker Demo
查看>>
三级联动
查看>>
我的第一次
查看>>
引用的本质分析(四)
查看>>
SecureCRT的日志设置
查看>>
排序算法前言
查看>>
OpenStack 中neutron 项目的debug过程中资源加载的思维导图
查看>>
Nginx实现负载均衡
查看>>
Caused by: java.lang.ClassNotFoundException: org.aopalliance.intercept.MethodInterceptor
查看>>