标题:a-zA-Z0-9的字符取值范围测试代码
只看楼主
疯狂的小a
Rank: 10Rank: 10Rank: 10
等 级:贵宾
威 望:39
帖 子:423
专家分:1871
注 册:2018-2-6
结帖率:100%
 问题点数:0 回复次数:0 
a-zA-Z0-9的字符取值范围测试代码
package com.xiaoa;

/**
 * @author niyite
 *
 */
/*
 * A:65
 * a:97
 * 0:48
 */
public class Demo {
    public static void main(String[] args) {
        System.out.println('A'*1);
        char c = (char) ('A'+'a');
        System.out.println(c);
        System.out.println((char) ('A'+'a'));
        System.out.println('A'-0);
        System.out.println('a'-0);
        System.out.println('0'-0);
        
    }
}
搜索更多相关主题的帖子: 字符 System out println char 
2018-02-15 19:53



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-484741-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.143664 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved