Download presentation
Presentation is loading. Please wait.
1
Java @Ch5.Methods 2010.11.05
2
Outline Overloading Methods The Scope of Variables The Math Class Floating point Format [Sample code] TestMethodOverloading.java 、 AmbiguousOverloading.java FloatFormat.java
3
Overloading Methods 定義 : Method name is the same but the operation will be different.
4
解釋 : Overloading 有人將他稱為「多載」,是指說在 「相同類別」中,定義「名稱相同」,但是「引 數個數不同」,或是「引數型態不同」的函式, 這樣 Java 就可以根據引數的個數、或是引數的 型態,呼叫到對應的函式。
5
程式 : TestMethodOverloading.java 課本 p.193
6
max(3,4)max(3.0,5.4)max(3.0,5.4,10.14) public static int max(int num1, int num2) public static double max(double num1, double num2) public static double max(double num1, double num2, double num3)
7
程式 : AmbiguousOverloading.java 課本 p.194
8
The Scope of Variables [ 變數的有效範圍 ] public static void main() { int a = 20; for( int b=0 ; b<10 ; b++ ) { println(b); } println(a); } The scope of a The scope of b 課本 5.9 節
9
The Scope of Variables [ Java 變數重複宣告的錯誤 ] public static void main() { int a = 20; for( int a=0 ; a<10 ; a++ ) { println(a); } println(a); } The scope of a 課本 5.9 節
10
C program C 在巢狀 blocks 中 可以宣告同名的變數 Java 不行
11
Global( 全域 ) & Local( 區域 ) Variable C 有「全域變數」和「區域變數」的概念 Java 只有「區域變數」的概念 Java 的全域變數比較類似 Class variable ( 定義在 method 裡的變數, 是一種 local variable) ※ In Java, all variables that are not local variables are fields of a class. 課本 p.195
12
Global Variable Sample in C
13
The Math Class Trigonometric Exponent Rounding min, max, abs random 課本 5.10 節
14
The random method 範圍 : 0 <= Math.random() < 1.0 EX: (int) (Math.random() * 10) 0 to 9 50 + (int) (Math.random() * 50) 50 to 99
15
練習 : 寫一個 Method, 亂數產生 a~z 課本 p.119~120
16
Floating point Format 程式 ( 補充 ): FloatFormat.java
17
練習 : ( 喜八辣 ) 1. 電腦與玩家各擲兩顆骰子 2. 方法 getRandomNum() 產生 1~6 的亂數 3. 方法 compare(a,b), 比較點數大小
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.