我定义了一个字符串变量String str = "155.5"; 我想把点去掉,用str=str.replace('.', '');,但是不行,后来查了一下材料,改成str=str.replace('.', (char)30);就可以了,谁知道(char)30是什么意思,谢谢。