English 中文(简体)
常驻代表
原标题:Signed und Unsigned Integers in Preon

我想使用Preon,用于与C所写的服务器进行通信的项目。 议定书取决于机器的本地最终性质(根据以下假设,可以与本编码<>java.nio.ByteOrder.getNative(”),并使用<代码>uint64_t,用于数据透支和,用于地位代码(负值表示错误)。

我无法在会前文件中找到有关签字的信息。 我对来源代码进行了快速研究,发现nl.flotsam.preon.buffer.DefaultBitBuffer。 使用已签名的转变(<<>>)和“javadoc”对nl.flotsam.preon.buffer.BitBuffer 还表明它使用已签署的分类账,但javadoc评论nl.flotsam.preon.buffer.BitBuffer 说到<代码>BitBuffer使用未经签名的分类账。 这使我感到困惑。

预先准备的缺省分类格式是什么? 我如何代表<代码>uint64_t和int32_t?

最佳回答

对于标有“@BoundNumber”的数据,缺省的情况很少。 http://www.un.org。

@BoundNumber(byteOrder=BigEndian)

......但目前具体的平台并不是一种选择。 这是一种限制。 您可能想考虑提出这个问题。 (否则,我将在今后某个地方。)

我能看到它的工作方式是,只有另一个不变的、被称为平台。

Update:

目前(目前只有头部)有三种选择:BigEndian、LittleEndian和原住民。 原住民将按java.nio.ByteOrder.getNative()的指示解决。

因此,现在可以这样写成法典:

@BoundNumber(byteOrder=Native) int value;

......根据建筑结构,按顺序排列成已签署的32个轨道分类。

问题回答

暂无回答




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签