01-方法 動手動腦

來源:互聯網
上載者:User

標籤:number   imp   square   ret   參數類型   手動   重載   i++   代碼   

編寫一個方法,使用以上演算法產生指定數目(比如1000個)隨機整數

 

import java.util.*;public class Random {    public static void main( String [] args ){        Random rand = new Random();        Scanner in = new Scanner( System.in );        int number;        System.out.println("請輸入產生的隨機數數量");        number = in.nextInt();        for( int i=0; i<number; i++){            System.out.println(rand.nextInt());        }    }}

 

請看以下代碼,你發現了有什麼特殊之處嗎?

// MethodOverload.java// Using overloaded methodspublic 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;    }}

參數類型不同可以構成“重載”關係

 

01-方法 動手動腦

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.