标签:
说Code Point是用于抽象,但Java中依然可以使用codePointAt方法来获取实际的整数值The notion of a code point is used for abstraction, to distinguish both:
- the number from an encoding as a sequence of bits, and
- the abstract character from a particular graphical representation (glyph).
This is because one may wish to make these distinctions:
- encode a particular code space in different ways, or
- display a character via different glyphs.
String str = "JAVA";
System.out.println("String = " + str);
// codepoint at index 1
int retval = str.codePointAt(1);
// prints character at index1 in string
System.out.println("Character(unicode point) = " + retval);
String str = “I am 君山”;
String 内部的char 数组的值为 49 20 61 6d 20 541b 5c71请问这char数组的值是码位吗,还是说是JVM使用的UTF16的编码?
在现代编码模型里要知道一个字符如何映射成计算机里比特,需要经过如下几个步骤。
平常我们所说的编码都在第三步的时候完成了,都没有涉及到CES。
以上摘自(http://blog.jobbole.com/39309/)
unicode只是一种抽象概念,使用一个数字来表示字符集中的一个字符,相当于规定了unicode字符集中那一百多万个字符和数字的映射,代码点就相当于这个字符对应着的数字了。Java中采用UTF-16编码方式对unicode进行表示(unicode是一种抽象概念,只确定了字符和码位的映射关系,不管编码),就是字符串的编码是utf-16,题主的例子中很清楚了。
注意char类型16位,单个char肯定无法表示这一百多万个码位的,一但字符串中出现了char无法表示的码位(字符)的时候,这时候就用utf-16进行编码,用多个char表示这个码位,相应字符串的length方法也比字符要多(length是char数组的长度),用charat方法也不一定能获得那个字符,而要用codepointat方法获得那个位置所在的字符的unicode码位,我记得还有一个codepointsize方法,可以获得具体的(码位)字符数。
再次强调一下,这个码位表示的是一个整数,是unicode编码里规定的某个字符想对应的整数。
所幸大多数常用字符都能用一个char类型表示,所以一般length方法都能确定字符串中字符的个数,但这个方式看起来不是那么可靠,所以不是处理英文的地方,算字符数量的时候,还是考虑不要用length了吧。
以上。
手机码字,求指正错误。
字符在内存中最终的表示形式是什么?是某种字符编码还是码位(Code Point)?
标签:
原文地址:http://www.cnblogs.com/01picker/p/4499015.html