我的应用程序需要具有类型为String的switch case语句.
我需要这样的东西:
Object list1 = "list1"; Object list2 = "list2"; Object list3 = "list3"; Object option = "list1"; switch (option) { case list1: // Do something case list2: // Do something case list3: // Do something default: // Do something }
有可能吗?
@H_404_23@EDIT:
Is it better to use switch case for
n
conditions rather going withif
andelse
? Please comment on it?