方法案例
Posted penphy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了方法案例相关的知识,希望对你有一定的参考价值。
练习:判断一个字符(如:‘d‘),判断是大写字母、小写字母还是数字字符
1 class Method07{ 2 //练习:判断一个字符(如:‘d‘),判断是大写字母、小写字母还是数字字符 3 public static String result02(){ 4 char ch = ‘#‘; 5 if(ch > ‘A‘ && ch < ‘Z‘){ 6 return "是大写字母"; 7 }else if(ch > ‘a‘ && ch < ‘z‘){ 8 return "是小写字母"; 9 }else if(ch > 0 && ch < 9){ 10 return"是数字字符"; 11 }else{ 12 return"是其他字符"; 13 } 14 } 15 } 16 class Method08{ 17 public static void main(String[ ]args){ 18 System.out.println(Method07.result02()); //先调用方法,然后将返回结果再进行输出 19 } 20 }
执行结果:是其他字符
以上是关于方法案例的主要内容,如果未能解决你的问题,请参考以下文章