本文整理了Java中io.vertx.core.buffer.Buffer.setUnsignedInt()
方法的一些代码示例,展示了Buffer.setUnsignedInt()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Buffer.setUnsignedInt()
方法的具体详情如下:
包路径:io.vertx.core.buffer.Buffer
类名称:Buffer
方法名:setUnsignedInt
[英]Sets the unsigned int at position pos in the Buffer to the value i.
The buffer will expand as necessary to accommodate any value written.
[中]将缓冲区中位置pos处的无符号整数设置为值i。
缓冲区将根据需要扩展以容纳任何写入的值。
代码示例来源:origin: eclipse-vertx/vert.x
private void testGetSetUnsignedInt(boolean isLE) throws Exception {
int numInts = 100;
Buffer b = Buffer.buffer(numInts * 4);
for (int i = 0; i < numInts; i++) {
if (isLE) {
b.setUnsignedIntLE(i * 4, (int) (Integer.MAX_VALUE + (long) i));
} else {
b.setUnsignedInt(i * 4, (int) (Integer.MAX_VALUE + (long) i));
}
}
for (int i = 0; i < numInts; i++) {
if (isLE) {
assertEquals(Integer.toUnsignedLong(Integer.MAX_VALUE + i), b.getUnsignedIntLE(i * 4));
} else {
assertEquals(Integer.toUnsignedLong(Integer.MAX_VALUE + i), b.getUnsignedInt(i * 4));
}
}
}
代码示例来源:origin: eclipse-vertx/vert.x
private void testSetUnsignedInt(Buffer buff) throws Exception {
for (int i = 0; i < numSets; i++) {
long val = Integer.toUnsignedLong(Integer.MAX_VALUE + i);
buff.setUnsignedInt(i * 4, val);
}
for (int i = 0; i < numSets; i++) {
long val = Integer.toUnsignedLong(Integer.MAX_VALUE + i);
assertEquals(val, buff.getUnsignedInt(i * 4));
}
}
代码示例来源:origin: io.vertx/vertx-core
private void testGetSetUnsignedInt(boolean isLE) throws Exception {
int numInts = 100;
Buffer b = Buffer.buffer(numInts * 4);
for (int i = 0; i < numInts; i++) {
if (isLE) {
b.setUnsignedIntLE(i * 4, (int) (Integer.MAX_VALUE + (long) i));
} else {
b.setUnsignedInt(i * 4, (int) (Integer.MAX_VALUE + (long) i));
}
}
for (int i = 0; i < numInts; i++) {
if (isLE) {
assertEquals(Integer.toUnsignedLong(Integer.MAX_VALUE + i), b.getUnsignedIntLE(i * 4));
} else {
assertEquals(Integer.toUnsignedLong(Integer.MAX_VALUE + i), b.getUnsignedInt(i * 4));
}
}
}
代码示例来源:origin: io.vertx/vertx-core
private void testSetUnsignedInt(Buffer buff) throws Exception {
for (int i = 0; i < numSets; i++) {
long val = Integer.toUnsignedLong(Integer.MAX_VALUE + i);
buff.setUnsignedInt(i * 4, val);
}
for (int i = 0; i < numSets; i++) {
long val = Integer.toUnsignedLong(Integer.MAX_VALUE + i);
assertEquals(val, buff.getUnsignedInt(i * 4));
}
}
代码示例来源:origin: io.vertx/vertx-rx-java
/**
* Sets the unsigned <code>int</code> at position <code>pos</code> in the Buffer to the value <code>i</code>.<p>
* The buffer will expand as necessary to accommodate any value written.
* @param pos
* @param i
* @return
*/
public io.vertx.rxjava.core.buffer.Buffer setUnsignedInt(int pos, long i) {
delegate.setUnsignedInt(pos, i);
return this;
}
代码示例来源:origin: vert-x3/vertx-rx
/**
* Sets the unsigned <code>int</code> at position <code>pos</code> in the Buffer to the value <code>i</code>.<p>
* The buffer will expand as necessary to accommodate any value written.
* @param pos
* @param i
* @return
*/
public io.vertx.rxjava.core.buffer.Buffer setUnsignedInt(int pos, long i) {
delegate.setUnsignedInt(pos, i);
return this;
}
代码示例来源:origin: com.jukusoft/vertx-binary-serializer
buf.setUnsignedInt(_pos, bytes.length);
_pos += 4;
内容来源于网络,如有侵权,请联系作者删除!