package pattern;
public class FactoryMethod {
public static void main(String [] args){
Factory.newStudent().print();
}
}
class Factory {
public static Student newStudent(){
return new Student();
}
}
class Student{
public void print(){
System.out.println("blank");
}
}
網頁
BloggerAds 廣告
標籤
- Java (96)
- Android (27)
- 演算法 (21)
- c++ (19)
- JavaScript (7)
- OpenMp (6)
- Design Pattern (4)
- 日文歌曲 (4)
- 資料結構 (4)
- Foundation Knowledge Of Programming (3)
- QUT (2)
- CodingHomeWork (1)
- Database (1)
- 英文歌詞 (1)
搜尋此網誌
2013年5月5日 星期日
工廠方法創造物件(factory method creating objects)
這種寫法容易維護 , 會比單純new Student()的寫法來的好.
因為以後只要改newStudent這個method, 會同步更新到所有new Student()的地方,
而不會發生漏改的情況.
Break 和 Return的用法.
1. Break 和 Return 都可以跳離迴圈.
2. 但是Return會跳出函式而不執行接下來的程式碼.
public class BreakAndReturnDemo {
public static void main(String[] args){
printWord();
printWordWithReturn();
}
public static void printWord(){
for(int i = 0 ; i < 10 ; i++){
System.out.println(i);
if(i == 5){
break;
}
}
System.out.println("After break for loop");
System.out.println("====Seperate Line========");
}
public static void printWordWithReturn(){
for(int i = 0 ; i < 10 ; i++){
System.out.println(i);
if(i == 5){
return;
}
}
System.out.println("This line won't be executed.");
}
}
訂閱:
文章 (Atom)
我的網誌清單
標籤
日文歌曲
(4)
股市
(7)
股票
(9)
英文歌詞
(1)
時事
(1)
硬體(hardware)
(1)
資料結構
(4)
演算法
(21)
數學(Math)
(4)
ACM
(3)
ajax
(7)
algorithms
(1)
Android
(27)
Blog Notes(部落格記事)
(6)
C
(9)
c++
(19)
CodingHomeWork
(1)
Database
(1)
Design Pattern
(4)
Foundation Knowledge Of Programming
(3)
GWT
(1)
How
(2)
J2EE
(1)
Java
(96)
Java語言
(4)
JavaScript
(7)
Leetcode
(4)
LOL
(1)
OpenMp
(6)
QUT
(2)
Uva
(2)
Yahoo知識問答
(11)