目錄
- 使用if…elif…elif…else 實現(xiàn)switch/case
- 使用字典 實現(xiàn)switch/case
- 在類中可使用調(diào)度方法實現(xiàn)switch/case
- 總結(jié)
使用if…elif…elif…else 實現(xiàn)switch/case
可以使用if…elif…elif..else序列來代替switch/case語句,這是大家最容易想到的辦法。但是隨著分支的增多和修改的頻繁,這種代替方式并不很好調(diào)試和維護。
使用字典 實現(xiàn)switch/case
可以使用字典實現(xiàn)switch/case這種方式易維護,同時也能夠減少代碼量。如下是使用字典模擬的switch/case實現(xiàn):
def num_to_string(num):
numbers = {
0 : "zero",
1 : "one",
2 : "two",
3 : "three"
}
return numbers.get(num, None)
if __name__ == "__main__":
print num_to_string(2)
print num_to_string(5)
執(zhí)行結(jié)果如下:
two
None
Python字典中還可以包括函數(shù)或Lambda表達式,代碼如下:
def success(msg):
print msg
def debug(msg):
print msg
def error(msg):
print msg
def warning(msg):
print msg
def other(msg):
print msg
def notify_result(num, msg):
numbers = {
0 : success,
1 : debug,
2 : warning,
3 : error
}
method = numbers.get(num, other)
if method:
method(msg)
if __name__ == "__main__":
notify_result(0, "success")
notify_result(1, "debug")
notify_result(2, "warning")
notify_result(3, "error")
notify_result(4, "other")
執(zhí)行結(jié)果如下:
success
debug warning error
other
通過如上示例可以證明能夠通過Python字典來完全實現(xiàn)switch/case語句,而且足夠靈活。尤其在運行時可以很方便的在字典中添加或刪除一個switch/case選項。
在類中可使用調(diào)度方法實現(xiàn)switch/case
如果在一個類中,不確定要使用哪種方法,可以用一個調(diào)度方法在運行的時候來確定。代碼如下:
class switch_case(object):
def case_to_function(self, case):
fun_name = "case_fun_" + str(case)
method = getattr(self, fun_name, self.case_fun_other)
return method
def case_fun_1(self, msg):
print msg
def case_fun_2(self, msg):
print msg
def case_fun_other(self, msg):
print msg
if __name__ == "__main__":
cls = switch_case()
cls.case_to_function(1)("case_fun_1")
cls.case_to_function(2)("case_fun_2")
cls.case_to_function(3)("case_fun_other")
執(zhí)行結(jié)果如下:
case_fun_1
case_fun_2
case_fun_other
總結(jié)
就個人來說,使用字典來實現(xiàn)switch/case是最為靈活的,但是理解上也有一定的難度。
本篇文章就到這里了,希望能給你帶來幫助,也希望您能夠多多關(guān)注腳本之家的更多內(nèi)容!
您可能感興趣的文章:- Python基礎(chǔ)之python循環(huán)控制語句break/continue詳解
- C語言之初始if語句詳解
- C語言入門篇--學(xué)習(xí)選擇,if,switch語句以及代碼塊
- 如何用c++表驅(qū)動替換if/else和switch/case語句
- 論一條select語句在MySQL是怎樣執(zhí)行的
- C語言中常見的幾種流程控制語句
- 一篇文章帶你了解JavaScript-語句
- C語言進階教程之循環(huán)語句缺陷詳析
- C語言控制語句之 循環(huán)
- mybatis中sql語句CDATA標簽的用法說明
- JavaScript中三種for循環(huán)語句的使用總結(jié)(for、for...in、for...of)
- golang switch語句的靈活寫法介紹
- C 語言基礎(chǔ)之C 語言三大語句注意事項