-2
我有3種類型的數組的: ControlType
ControlName
ControlValue
如何使用功能/ SWITCH CASE語句方法在Java中
當控制類型是「ClickButton」,我必須通過相應的控件名稱和ControlValue 。
代碼:
public class StringSwitchDemo extends StringSwitchDemoHelper
{
public static int getMonthNumber(String ControlType) {
int ControlValue = 0;
int ControlName = 0;
if (ControlType == null) {
return ControlValue;
}
switch (ControlType.toString()) {
case ClickButton:
return ControlType(ControlValue, ControlName);
break;
}
return ControlValue;
}
private static int ControlType(String controlValue, String controlName) {
// TODO Auto-generated method stub
return 0;
}
}
你不需要(也不能在'return'後面加上'break',因爲它是無法訪問的。 「break」永遠不會被打中,因爲方法已經返回。 – khelwood
'ClickButton'是編譯時常量字符串嗎? – khelwood
@khelwood新用戶似乎只問問題而不回答!!!! –