gpt4 book ai didi

java - 如何在java中声明unsigned char数组?

转载 作者:行者123 更新时间:2023-11-30 08:55:38 25 4
gpt4 key购买 nike

如何声明 array java 中的数据类型 unsigned char。

我试着做 private unsigned char[] Memory = new char[64000]; , 但它给出的错误是 <identifier> expected

我的项目说:

 内存寻址是16位

 内存是通过取一个64K的字节(unsigned char)数组来模拟的

 所有内存引用都是通过内存和通用寄存器之间的加载和存储指令

 每个进程的堆栈为50字节

最佳答案

Java 中的 char 总是无符号的:

4.2.1. Integral Types and Values
The values of the integral types are integers in the following ranges:
...
For char, from '\u0000' to '\uffff' inclusive, that is, from 0 to 65535

因此,简单地写:

private char[] Memory = new char[64000];

关于java - 如何在java中声明unsigned char数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28914634/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com