switch statement can complete normally iff at least one of the following is true:

(1)The switch block is empty or contains only switch labels.

(2)The last statement in the switch block can complete normally.

(3)There is at least one switch label after the last switch block statement group.

(4)The switch block does not contain a default label.

(5)There is a reachable break statement that exits the switch statement.

16.2.9. switch Statements

1、V is [un]assigned after a switch statement (§14.11) iff all of the following are true:

(1)Either there is a default label in the switch block or V is [un]assigned after the switch expression.

(2)Either there are no switch labels in the switch block that do not begin a block-statement-group (that is, there are no switch labels immediately before the "}" that ends the switch block) or V is [un]assigned after the switch expression.

(3)Either the switch block contains no block-statement-groups or V is [un]assigned after the last block-statement of the last block-statement-group.

(4)V is [un]assigned before every break statement that may exit the switch statement.

2、V is [un]assigned before the switch expression iff V is [un]assigned before the switch statement.

If a switch block contains at least one block-statement-group, then the following rules also apply:

(1)V is [un]assigned before the first block-statement of the first block-statement-group in the switch block iff V is [un]assigned after the switch expression.

(2)V is [un]assigned before the first block-statement of any block-statement-group other than the first iff V is [un]assigned after the switch expression and V is [un]assigned after the preceding block-statement.

上面标红的4个条件要全部满足才能确定switch语句中的明确与非明确赋值。

满足条件的实例1:

class AA {
	public AA(int i) { }
	String p = "";
}

public void md(String p) {
	int i;
	switch (new AA(i=2).p) {
	default:
		i = 0;
	case "b":
		break;
	}
	int j = i; // 报错,i没有初始化
}

  

不满足条件的实例1:

 public void md(String p) {
	int i;
	switch (p) {
	default:
		i = 0;
	case "b":
	}
	int j = i; // 报错,i没有初始化
}

不满足条件的实例2: 

public void t(String p){
		switch(p){
		default:
			System.out.println("default");
		case "a":
			System.out.println("a");

		}
}

将default放在源代码开始处,当p为任意类型的字符串时,包括空字符串都打印 default  a  

但是不能为null,因为switch传递的参数不允许为null。

如下的情况会报错,i在使用时没有被初始化。

情况1:

public void t(String p){
		int i;
		switch(p){
		default:
			i = 0;
			System.out.println("default");
		case "a":
			System.out.println("a");
		}
		int j = i;
}

情况2:

public void t(String p){
	int i;
	switch(p){
	case "a":
		System.out.println("a");
		break;
	default:
		i = 0;
		System.out.println("default");
	}
	int j = i;
}

  

但是下面的一些情况就不会报错。

情况1:

public void t(String p){
	int i;
	switch(p){
	case "a":
		System.out.println("a");
	default:
		i = 0;
		System.out.println("default");
	}
	int j = i;
}

情况2:

public void t(String p){
	int i;
	switch(p){
	case "a":
		i = 0;
		System.out.println("a");
		break;
	default:
		i = 0;
		System.out.println("default");
	}
	int j = i;
}

  

当case分支中不加花括号时,其作用域可以延生到后面的case,如下:

 public void t(String p){
	switch(p){
	case "a":
		int i = 0;
		System.out.println("a");
	default:
		i = 3;
		System.out.println("default");
	}
}

当加上花括号时就不允许这样,如下:

public void t(String p){
	switch(p){
	case "a":{
		int i = 0;
		System.out.println("a");
	}
	default:
		i = 3;
		System.out.println("default");
	}
}

i=3的语句会报错,变量找不到。 

public void t(String p){
	int i = 0;
	switch(p){
	case "a":
		int i = 0; // 报错,重复定义变量i,加花括号也同样报错
		System.out.println("a");
	default:
		i = 3;
		System.out.println("default");
	}
}

这个很好理解,就是在局部变量作用域内,不能再定义相同名称的局部变量。  

 

  

Flow中的Switch分析的更多相关文章

  1. Gen中的switch分析及lookupswitch与tableswitch指令

    int chooseNear(int i) { switch (i) { case 0: return 0; case 1: return 1; case 2: return 2; default: ...

  2. Android 中图片压缩分析(上)

    作者: shawnzhao,QQ音乐技术团队一员 一.前言 在 Android 中进行图片压缩是非常常见的开发场景,主要的压缩方法有两种:其一是质量压缩,其二是下采样压缩. 前者是在不改变图片尺寸的情 ...

  3. Spring Cloud Data Flow 中的 ETL

    Spring Cloud Data Flow 中的 ETL 影宸风洛 程序猿DD 今天 来源:SpringForAll社区 1 概述 Spring Cloud Data Flow是一个用于构建实时数据 ...

  4. HanLP中人名识别分析

    HanLP中人名识别分析 在看源码之前,先看几遍论文<基于角色标注的中国人名自动识别研究> 关于命名识别的一些问题,可参考下列一些issue: 名字识别的问题 #387 机构名识别错误 关 ...

  5. HanLP中人名识别分析详解

    HanLP中人名识别分析详解 在看源码之前,先看几遍论文<基于角色标注的中国人名自动识别研究> 关于命名识别的一些问题,可参考下列一些issue: l ·名字识别的问题 #387 l ·机 ...

  6. Java 7 中的Switch 谈 Java版本更新和反编译知识

    Java 7 中的Switch 谈 Java版本更新和反编译知识          学习编程,享受生活,大家好,我是追寻梦的飞飞.今天主要讲述的是Java7中的更新Switch实现内部原理和JAD反编 ...

  7. java中的Switch case语句

    java中的Switch case 语句 在Switch语句中有4个关键字:switch,case break,default. 在switch(变量),变量只能是整型或者字符型,程序先读出这个变量的 ...

  8. Android中AppWidget的分析与应用:AppWidgetProvider .

    from: http://blog.csdn.net/thl789/article/details/7887968 本文从开发AppWidgetProvider角度出发,看一个AppWidgetPrv ...

  9. Java中的Switch用法

    一.java当中的switch与C#相比有以下区别 注:在java中switch后的表达式的类型只能为以下几种:byte.short.char.int(在Java1.6中是这样),   在java1. ...

随机推荐

  1. struts2-core-2.3.20.jar

    核心配置位于该jar struts-default.xml struts-2.3.dtd <?xml version="1.0" encoding="UTF-8&q ...

  2. spring + rs + RocketMQ 【精】

    cxf-rs-rocketmq 项目地址:见git │ pom.xml │ └─src ├─main │ ├─java │ │ └─cn │ │ └─zno │ │ ├─pojo │ │ │ Rece ...

  3. hdu 2048 神上帝以及老天爷

    题目 解题思路:      典型的错排题目      首先求出所有的拿错的情况,然后求出错排的所有情况,以前者除以后者就是百分比      现在求对应的所有都拿错的情况.容易知道,f(1)=0,f(2 ...

  4. 在ANTMINER(阉割版BeagleBone Black)运行Debain

    开门见山,直入主题 咸鱼入手3块阉割ARM板,经过快递近6天运输到手,不过价格便宜 东西下面这样的(借了咸鱼的图): 发现这块板是阉割版的国外beagleboard.org型号为BeagleBone ...

  5. SpringBoot tomcat

    该文的前提是已经可以在控制台运行成功,有些时候想放在tomcat里运行 大致分为如下几步 1.配置文件更改 <dependency> <groupId>org.springfr ...

  6. [翻译]第一天 - 在 Windows 下安装和运行 .NET Core

    原文: http://michaelcrump.net/getting-started-with-aspnetcore/ 免责声明:我不是 .NET Core 开发团队的一员,并且使用的是公开.可用的 ...

  7. IIS7 上传时出现'ASP 0104 : 80004005'错误

    这个错误本身说的是上传的文件的大小超过IIS所设置的默认值,一般为200KB,压缩文件是个下下之选,我还真这么干过.后来了解到通过更改IIS对上传文件的默认大小设置,来实现上传. 下面说一下具体步骤: ...

  8. 【加密算法】3DES

    一.简介 3DES(或称为Triple DES)是三重数据加密算法(TDEA,Triple Data Encryption Algorithm)块密码的通称.它相当于是对每个数据块应用三次DES加密算 ...

  9. WPF窗口启动时最大化

    在xaml对应的后台代码文件的初始化方法中: public ShellView() { InitializeComponent(); #region 启动时串口最大化显示 Rect rc = Syst ...

  10. C#字符串转UNICODE

    public static string StringToUnicode(string s)//字符串转UNICODE代码 { char[] charbuffers = s.ToCharArray() ...