gakkie プログラミング 備忘録

tech::expert(現tech camp) 45期

2021-01-24から1日間の記事一覧

湯婆婆でJava例外処理練習

去年流行ったJavaで湯婆婆を実装してみる を参考に例外処理を実装する。 空文字に例外を投げることはできたが全角スペースを許容してしまう。 今回は全角スペースを許容もチェックする。 結論 trimメソッドを使って名前を入力した時点で全角スペースを除く処…

Java例外処理練習

Main.java public class Main { public static void main(String[] args) throws Exception { String str1 = "apple"; String str2 = ""; boolean bool1 = str1.isEmpty(); boolean bool2 = str2.isEmpty(); System.out.println("bool1 : " + bool1); System…

Java例外処理練習

Main.java public class Main { public static void main(String[] args) throws Exception { String str1 = "apple"; String str2 = ""; boolean bool1 = str1.isEmpty(); boolean bool2 = str2.isEmpty(); System.out.println("bool1 : " + bool1); System…

Java例外処理練習

Main.java public class Main { public static void main(String[] args) throws Exception { String str1 = "apple"; String str2 = ""; boolean bool1 = str1.isEmpty(); boolean bool2 = str2.isEmpty(); System.out.println("bool1 : " + bool1); System…