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

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

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

Buffer.setUnsignedShort介绍

[英]Sets the unsigned short at position pos in the Buffer to the value s.

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

代码示例

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

private void testSetUnsignedShort(Buffer buff) throws Exception {
 for (int i = 0; i < numSets; i++) {
  int val = Short.MAX_VALUE + i;
  buff.setUnsignedShort(i * 2, val);
 }
 for (int i = 0; i < numSets; i++) {
  int val = Short.MAX_VALUE + i;
  assertEquals(val, buff.getUnsignedShort(i * 2));
 }
}

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

private void testGetSetUnsignedShort(boolean isLE) throws Exception {
 int numShorts = 100;
 Buffer b = Buffer.buffer(numShorts * 2);
 for (short i = 0; i < numShorts; i++) {
  if (isLE) {
   b.setUnsignedShortLE(i * 2, (short) (Short.MAX_VALUE + (int) i));
  } else {
   b.setUnsignedShort(i * 2, (short) (Short.MAX_VALUE + (int) i));
  }
 }
 for (short i = 0; i < numShorts; i++) {
  if (isLE) {
   assertEquals(Integer.toUnsignedLong(Short.MAX_VALUE + i), b.getUnsignedShortLE(i * 2));
  } else {
   assertEquals(Integer.toUnsignedLong(Short.MAX_VALUE + i), b.getUnsignedShort(i * 2));
  }
 }
}

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

private void testGetSetUnsignedShort(boolean isLE) throws Exception {
 int numShorts = 100;
 Buffer b = Buffer.buffer(numShorts * 2);
 for (short i = 0; i < numShorts; i++) {
  if (isLE) {
   b.setUnsignedShortLE(i * 2, (short) (Short.MAX_VALUE + (int) i));
  } else {
   b.setUnsignedShort(i * 2, (short) (Short.MAX_VALUE + (int) i));
  }
 }
 for (short i = 0; i < numShorts; i++) {
  if (isLE) {
   assertEquals(Integer.toUnsignedLong(Short.MAX_VALUE + i), b.getUnsignedShortLE(i * 2));
  } else {
   assertEquals(Integer.toUnsignedLong(Short.MAX_VALUE + i), b.getUnsignedShort(i * 2));
  }
 }
}

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

private void testSetUnsignedShort(Buffer buff) throws Exception {
 for (int i = 0; i < numSets; i++) {
  int val = Short.MAX_VALUE + i;
  buff.setUnsignedShort(i * 2, val);
 }
 for (int i = 0; i < numSets; i++) {
  int val = Short.MAX_VALUE + i;
  assertEquals(val, buff.getUnsignedShort(i * 2));
 }
}

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

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

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

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

相关文章