Python可能沒有內置switch語句,但仍然可以模擬它。
switch = {1: func1, 2: func2, 3: func3} # case statements
switch.get(switchvar, default)() # default is used if the cases are not matched
下面是一些有趣的事情,你可以在C做++(偶爾確實有使用):
// default
template <int i> void int_switch()
{
std::cout << i << '\n';
}
// case 1
template<> void int_switch<1>()
{
std::cout << "one\n";
}
// case 2
template<> void int_switch<2>()
{
std::cout << "two\n";
}
const int switch_var = 3;
int_switch<switch_var>(); // Outputs "3\n"
當然,只有當模板參數是一個常量表達式,因此使用的作品const int
而不是隻有int
。
來源
2014-01-09 20:38:44
JAB
[goto](http://en.wikipedia.org/wiki/Goto) – celeriko
http://en.wikipedia.org/wiki/LOLCODE – bf2020
「列出具有屬性X的事物」的問題並不適合爲這個網站。 –