Python里怎么实现switch case

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python里怎么实现switch case相关的知识,希望对你有一定的参考价值。

参考技术A 学习Python过程中,发现没有switch-case,过去写C习惯用Switch/Case语句,官方文档说通过if-elif实现。所以不妨自己来实现Switch/Case功能。
方法一
通过字典实现
def foo(var):
return
'a': 1,
'b': 2,
'c': 3,
.get(var,'error') #'error'为默认返回值,可自设置

方法二
通过匿名函数实现
def foo(var,x):
return
'a': lambda x: x+1,
'b': lambda x: x+2,
'c': lambda x: x+3,
[var](x)

方法三
通过定义类实现
参考Brian Beck通过类来实现Swich-case
# This class provides the functionality we want. You only need to look at
# this if you want to know how this works. It only needs to be defined
# once, no need to muck around with its internals.
class switch(object):
def __init__(self, value):
self.value = value
self.fall = False

def __iter__(self):
"""Return the match method once, then stop"""
yield self.match
raise StopIteration

def match(self, *args):
"""Indicate whether or not to enter a case suite"""
if self.fall or not args:
return True
elif self.value in args: # changed for v1.5, see below
self.fall = True
return True
else:
return False

# The following example is pretty much the exact use-case of a dictionary,
# but is included for its simplicity. Note that you can include statements
# in each suite.
v = 'ten'
for case in switch(v):
if case('one'):
print 1
break
if case('two'):
print 2
break
if case('ten'):
print 10
break
if case('eleven'):
print 11
break
if case(): # default, could also just omit condition or 'if True'
print "something else!"
# No need to break here, it'll stop anyway

# break is used here to look as much like the real thing as possible, but
# elif is generally just as good and more concise.

# Empty suites are considered syntax errors, so intentional fall-throughs
# should contain 'pass'
c = 'z'
for case in switch(c):
if case('a'): pass # only necessary if the rest of the suite is empty
if case('b'): pass
# ...
if case('y'): pass
if case('z'):
print "c is lowercase!"
break
if case('A'): pass
# ...
if case('Z'):
print "c is uppercase!"
break
if case(): # default
print "I dunno what c was!"

# As suggested by Pierre Quentel, you can even expand upon the
# functionality of the classic 'case' statement by matching multiple
# cases in a single shot. This greatly benefits operations such as the
# uppercase/lowercase example above:
import string
c = 'A'
for case in switch(c):
if case(*string.lowercase): # note the * for unpacking as arguments
print "c is lowercase!"
break
if case(*string.uppercase):
print "c is uppercase!"
break
if case('!', '?', '.'): # normal argument passing style also applies
print "c is a sentence terminator!"
break
if case(): # default
print "I dunno what c was!"

# Since Pierre's suggestion is backward-compatible with the original recipe,
# I have made the necessary modification to allow for the above usage.

查看Python官方:PEP 3103-A Switch/Case Statement
发现其实实现Switch Case需要被判断的变量是可哈希的和可比较的,这与Python倡导的灵活性有冲突。在实现上,优化不好做,可能到最后最差的情况汇编出来跟If Else组是一样的。所以Python没有支持。
参考技术B 使用if-elif-else语句代替

Java中的switch语句怎么使用

switch 语句的格式:
 
switch ( 整型或字符型变量 )

 case 变量可能值1 :
  分支一;
 break;
case 变量可能值2 :
  分支二;
 break;
case 变量可能值3 :
  分支三;
 break;
...
default :
最后分支;

 
在 switch 的语法里,我们要学到4个关键字:switch、case 、break、default。
 
在 switch ( 变量 ) 这一行里,变量只能是整型或字符型。程序先读出这个变量的值,然后在各个"case"里查找哪个值和这个变量相等,如果相等,就算条件成立,程序执行相应的分支,直到碰上break或者switch语句结束。
 
 
了解一下switch,case,break,default的意思,对理解前面的一切也会有帮助,它们分别是:开关,情况,中断,默认(值)。那么用一句话套起来的说法就是:根据开关值的不同,执行不同的情况,直到遇上中断;如果所有的情况都不符合开关值,那么就执行默认的分支。
 
最后说一下关于switch中非常重要的几个注意点。
 
第一、switch ( 整型或字符型变量 ) 中,变量的类型如文中所标,只能是整型和字符类型。它们包含 int,char。当然无符类型或不同的长度整型(unsigned int,short,unsigned char)等都可以。另外,枚举类型(enum)内部也是由整型或字符类型实现。所以也可以。实型(浮点型)数就不行,如:
float a = 0.123;
switch(a) //错误!a不是整型或字符类型变量。

....

 
第二、case 之后可以是直接的常量数值,如例中的1、2、3、4,也可以是一个使用常量计算式,如2+2等,但不能是变量或带有变量的表达式,如 a * 2等。当然也不能是实型数,如4.1,或2.0 / 2 等。
switch(formWay)

case 2-1 : //正确
...
case a-2 : //错误
...
case 2.0 : //错误
...

另外,在case 与常量值之后,需要一个冒号,请注意不要疏忽。
 
第三、break 的作用。
break 使得程序在执行完选中的分支后,可以跳出整个switch语句(即跳到switch接的一对{}之后),完成switch。如果没有这个break,程序将在继续前进到下一分支,直到遇到后面的break或者switch完成。
比如,假设现在程序进入case 1: 中的分支,但case 1 的分支这回没有加break:
 
case 1 :
System.out.println("您是通过搜索引擎来到本网站的。");
case 2 :
System.out.println("您是通过朋友介绍来到本网站的。");
 
那么,程序在输出 "您是通过搜索引擎来到本网站的。" 之后,会继续输出case 2中的 "您是通过朋友介绍来到本网站的。" 。
请大家将前面实例中的代码片段改为如下(红色部分,即将所有的break都通过加//使之无效。):
...
  case 1 :
System.out.println("您是通过搜索引擎来到本网站的。" );
//break;
case 2 :
System.out.println("您是通过朋友介绍来到本网站的。");
//break;
case 3 :
System.out.println("您是通过报刊杂志来到本网站的。");
//break;
case 4 :
System.out.println("您是通过其它方法来到本网站的。");
//break;
default :
System.out.println("错误的选择!请输入1~4的数字做出选择。");
...
 
运行后,结果会是如何?请大家动手试试,然后在作业中回答我。
 
第四、default是可选中,前面我们已经说过它的用处,及如果没有default,程序在找不到匹配的case分支后,将在switch语句范围内不做什么事,直接完成switch。大家也可以在实例中将default的代码注释掉,然后试运行,并且在选择时输入5。
...
//default :
//cout << "错误的选择!请输入1~4的数字做出选择。" << endl;
...
 
第五、必要时,可在各个case中使用来明确产生独立的复合语句。
前面我们在讲if...语句和其它流程控制语句时,都使用来产生复合语句:
if (条件)

分支一;

除非在分支中的语句正好只有一句,这里可以不需要花括号。但在switch的各个case语句里,我们在语法格式上就没有标出要使用{},请看:
switch ( 整型或字符型变量 )

 case 变量可能值1 :
  分支一;
 break;
case 变量可能值2 :
....

 
一般教科书上只是说 case 分支可以不使用{},但这里我想提醒大家,并不是任何情况下case分支都可以不加,比如你想在某个case里定义一个变量:
switch (formWay)

case 1 :
int a=2; //错误。由于case不明确的范围,编译器无法在此处定义一个变量。
...
case 2 :
...

 
在这种情况下,加上{}可以解决问题。
switch (formWay)

case 1 :
 { 
int a=2; //正确,变量a被明确限定在当前{}范围内。
...
 } 
case 2 :
...
参考技术A 关于java中switch使用的一些说明

switch(表达式)

case 常量表达式1:语句1;
....
case 常量表达式2:语句2;
default:语句;

default就是如果没有符合的case就执行它,default并不是必须的.
case后的语句可以不用大括号.
switch语句的判断条件可以接受int,byte,char,short,不能接受其他类型.
一旦case匹配,就会顺序执行后面的程序代码,而不管后面的case是否匹配,直到遇见break,利用这一特性可以让好几个case执行统一语句.

例如:

switch(x)



case 1:

case 2:

case3: System.out.println("haha");

break;

case4: System.out.println("hehe");

追问

看不懂例题。。

追答

那你会用if判断吗 if(true)
System.out.println("真");

追问

追答

其实是一样的道理,if是判断括号内容是不是为“真”,switch()判断的是括号里的内容等不等于下面case后面的值,如果等于,就执行这个case后面:冒号后面的程序然后跳出switch判断,,如果没有一个case符合,就执行default下的,再跳出switch

追问

哦哦,

还有一个问题

基本数据类型和引用数据类型有什么区别

追答

没有那么大区别,
举个简单例子说明
class A
private int age;
private String name;


int是基本数据类型,当你new A()得时候,age自动赋值为0;
但是对于引用类型name来说,此时只会分配一个引用,指向null, 当你想使用name得时候不能直接引用,必须实例化之后才能使用。否则,会引起空指针exception

追问

哦哦,谢谢了

本回答被提问者采纳

以上是关于Python里怎么实现switch case的主要内容,如果未能解决你的问题,请参考以下文章

Java中的switch语句怎么使用

iOS switch的参数怎么使用NSString

C语言中 For语句后面的括号里有两个分号是啥意思啊?

电脑加速switch不明显

switch语句怎么用啊 具体啊!

PythonStudy——Python 中Switch-Case 结构的实现