Created
March 7, 2012 10:58
-
-
Save tmd45/1992503 to your computer and use it in GitHub Desktop.
no good source comment
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package localhost; | |
public class Example { | |
/** | |
* ここにはとても気持ちの悪いコードが書いてあります。 | |
* 身体の弱い方、体調の優れない方が閲覧されないことをお勧めいたします。 | |
*/ | |
public static void main(String[] args) { | |
// この条件は以下のいずれかの場合に適用される。 | |
// strが | |
// ・"Cat" のとき | |
// ・"Dog" のとき | |
// 2012.03.07 add start | |
// ・"Bird" のとき | |
// 2012.03.07 add end | |
// ※"Fish" のときはぜったい適用されない | |
if( | |
str.equals("Cat") | |
|| str.equals("Dog") | |
// 2012.03.07 add start | |
|| str.equals("Bird") | |
// 2012.03.07 add end | |
) { | |
// 好きだって言いたいだけ | |
System.out.println("I love a pretty animal!") | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment