Home > Java > javaTutorial > body text

The byte size problem occupied by har[] and String types

(*-*)浩
Release: 2019-08-08 17:15:52
forward
2085 people have browsed it

The byte size problem occupied by har[] and String types

In C language

1, char a[10] = {"China"}, this How many bytes does a occupy?

Answer: It takes up 10 bytes.

Analysis: The above code assigns value to a,

a[0]='C', a[1]='h', a[2]='i' , a[3]='n', a[4]='a', a[5]='\0', a[6]='\0', a[7]='\0', a [8]='\0', a[9]='\0'

So, it occupies 10 bytes.

2. If it only refers to "China"?

Answer: A total of 6 bytes. China occupies 5 bytes, ends with '\0', and occupies 1 byte.

In Java language

1. How many bytes does String s = "China"; occupy?

Answer: 5 bytes.

 System.out.println(Charset.defaultCharset());//获取ide默认编码类型
String s = new String("China".getBytes());
byte[] b = s.getBytes();
System.out.println("" + b.length);
Copy after login

The above code can output that the byte length occupied by "China" is 5

2. How many bytes does String s = "China"; occupy?

Answer: If it is Chinese characters, encoding needs to be considered.

(1) In GBK encoding (ide default), each Chinese character occupies 2 bytes, then China occupies 4 bytes.

(2) When UTF-8 is encoded, each Chinese character occupies 3 bytes, so China occupies 6 bytes.

3. Transcoding problem, when converting GBK to UTF-8, will the byte usage increase? What about the other way around?

//获取的是 UTF-8编码
System.out.println(Charset.defaultCharset());
String s;
try {
        s = new String("中国".getBytes(),"GBK");
        byte[] b = s.getBytes();
        System.out.println("" + b.length);
    } catch (UnsupportedEncodingException e) {
        e.printStackTrace();
}
Copy after login

The above code is: UTF-8 to GBK encoding format, the s length changes from 6 bytes to 9 bytes.

s Content changes: China —> Juan浗

Because the current encoding is UTF-8, it becomes 3 characters after transcoding, occupying 9 bytes. However, the reverse situation is like this:

China (gbk) —> ?й? (utf-8)

s The length changes from 4 bytes to 4 bytes, Although the length has not changed, the text has. here ? Occupies 1 byte

The above is the detailed content of The byte size problem occupied by har[] and String types. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!