io.vertx.core.buffer.Buffer.setUnsignedByte()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(1.8k)|赞(0)|评价(0)|浏览(115)

本文整理了Java中io.vertx.core.buffer.Buffer.setUnsignedByte()方法的一些代码示例,展示了Buffer.setUnsignedByte()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Buffer.setUnsignedByte()方法的具体详情如下:
包路径:io.vertx.core.buffer.Buffer
类名称:Buffer
方法名:setUnsignedByte

Buffer.setUnsignedByte介绍

[英]Sets the unsigned byte at position pos in the Buffer to the value b.

The buffer will expand as necessary to accommodate any value written.
[中]将缓冲区中位置pos处的无符号字节设置为值b。
缓冲区将根据需要扩展以容纳任何写入的值。

代码示例

代码示例来源:origin: eclipse-vertx/vert.x

private void testSetUnsignedByte(Buffer buff) throws Exception {
 for (int i = 0; i < numSets; i++) {
  int val = Byte.MAX_VALUE + i;
  buff.setUnsignedByte(i, (short) val);
 }
 for (int i = 0; i < numSets; i++) {
  int val = Byte.MAX_VALUE + i;
  assertEquals(val, buff.getUnsignedByte(i));
 }
}

代码示例来源:origin: io.vertx/vertx-core

private void testSetUnsignedByte(Buffer buff) throws Exception {
 for (int i = 0; i < numSets; i++) {
  int val = Byte.MAX_VALUE + i;
  buff.setUnsignedByte(i, (short) val);
 }
 for (int i = 0; i < numSets; i++) {
  int val = Byte.MAX_VALUE + i;
  assertEquals(val, buff.getUnsignedByte(i));
 }
}

代码示例来源:origin: io.vertx/vertx-rx-java

/**
 * Sets the unsigned <code>byte</code> at position <code>pos</code> in the Buffer to the value <code>b</code>.<p>
 * The buffer will expand as necessary to accommodate any value written.
 * @param pos 
 * @param b 
 * @return 
 */
public io.vertx.rxjava.core.buffer.Buffer setUnsignedByte(int pos, short b) { 
 delegate.setUnsignedByte(pos, b);
 return this;
}

代码示例来源:origin: vert-x3/vertx-rx

/**
 * Sets the unsigned <code>byte</code> at position <code>pos</code> in the Buffer to the value <code>b</code>.<p>
 * The buffer will expand as necessary to accommodate any value written.
 * @param pos 
 * @param b 
 * @return 
 */
public io.vertx.rxjava.core.buffer.Buffer setUnsignedByte(int pos, short b) { 
 delegate.setUnsignedByte(pos, b);
 return this;
}

相关文章