switch.md 3.0 KB
Newer Older
M
Mars Liu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
# switch

我们希望编写一个函数,统计一个 `List<Integer>` 列表中的数值分布,其中 1 
是 small,2 是 middle, 3 是 big,3以上都是 huge 。列表中的数值全部都在
1 到 5之间,下列哪个程序会在对象的 small, middle, big, huge 四个字段
保存正确的统计结果?

## 答案

```java
public class Counter{
    int small = 0;
    int middle = 0;
M
typo  
Mars Liu 已提交
14
    int big = 0;
M
Mars Liu 已提交
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
    int huge = 0;
    //... getter methods

    public void read(List<Integer> numbers){
        for(var value: numbers){
            switch(value){
            case 1:
                small += 1;
                break;
            case 2:
                middle += 1;
                break;
            case 3:
                big += 1;
                break;
            default:
                huge +=1;
            }
        }
    }
}
```

M
Mars Liu 已提交
38
## 选项
M
Mars Liu 已提交
39 40 41 42 43 44 45

### A

```java
public class Counter{
    int small = 0;
    int middle = 0;
M
typo  
Mars Liu 已提交
46
    int big = 0;
M
Mars Liu 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
    int huge = 0;
    //... getter methods

    public void read(List<Integer> numbers){
        for(var value: numbers){
            switch(value){
            case 1:
                small += 1;
            case 2:
                middle += 1;
            case 3:
                big += 1;
            default:
                huge +=1;
            }
        }
    }
}
```

### B

```java
public class Counter{
    int small = 0;
    int middle = 0;
M
typo  
Mars Liu 已提交
73
    int big = 0;
M
Mars Liu 已提交
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
    int huge = 0;
    //... getter methods

    public void read(List<Integer> numbers){
        for(var value: numbers){
            switch(value){
            case 1:
                small += 1;
                return small;
            case 2:
                middle += 1;
                return middle;
            case 3:
                big += 1;
                return big;
            default:
                huge +=1;
                return huge;
            }
        }
    }
}
```

### C

```java
public class Counter{
    int small = 0;
    int middle = 0;
M
typo  
Mars Liu 已提交
104
    int big = 0;
M
Mars Liu 已提交
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
    int huge = 0;
    //... getter methods

    public void read(List<Integer> numbers){
        for(var value: numbers){
            switch(value){
            case 1:
                small += 1;
                return value;
            case 2:
                middle += 1;
                return value;
            case 3:
                big += 1;
                return value;
            default:
                huge +=1;
                return value;
            }
        }
    }
}
```

### D

```java
public class Counter{
    int small = 0;
    int middle = 0;
M
typo  
Mars Liu 已提交
135
    int big = 0;
M
Mars Liu 已提交
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
    int huge = 0;
    //... getter methods

    public void read(List<Integer> numbers){
        for(var value: numbers){
            switch(value){
            case 1:
                small += 1;
                break;
            case 2:
                middle += 1;
                break;
            case 3:
                big += 1;
                break;
            default:
                huge +=1;
            }
        }
    }
}
```