logo

Switch İfadesindeki Dize

Java 7'de Java, switch ifadesinin ifadesinde dize nesnelerini kullanmanıza olanak tanır. String'i kullanmak için aşağıdaki noktaları dikkate almanız gerekir:

  • Yalnızca dize nesnesi olmalıdır.
  •  Object game = 'Hockey'; // It is not allowed String game = 'Hockey'; // It is OK. 
  • String nesnesi büyük/küçük harfe duyarlıdır.
  •  'Hickey' and 'hocker' are not equal. 
  • Boş nesne yok

dize nesnesini iletirken dikkatli olun, NullPointerException'a boş bir nesne nedeni iletin.


Switch İfadesindeki Dize Örnek 1

 public class StringInSwitchStatementExample { public static void main(String[] args) { String game = 'Cricket'; switch(game){ case 'Hockey': System.out.println('Let's play Hockey'); break; case 'Cricket': System.out.println('Let's play Cricket'); break; case 'Football': System.out.println('Let's play Football'); } } } 

Çıktı:

 Let's play Cricket 

Switch İfadesindeki Dize Örnek 2

 public class StringInSwitchStatementExample { public static void main(String[] args) { String game = 'Card-Games'; switch(game){ case 'Hockey': case'Cricket': case'Football': System.out.println('This is a outdoor game'); break; case 'Chess': case'Card-Games': case'Puzzles': case'Indoor basketball': System.out.println('This is a indoor game'); break; default: System.out.println('What game it is?'); } } } 

Çıktı:

 This is a indoor game