本文整理汇总了C++中IReader::readLong方法的典型用法代码示例。如果您正苦于以下问题:C++ IReader::readLong方法的具体用法?C++ IReader::readLong怎么用?C++ IReader::readLong使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IReader
的用法示例。
在下文中一共展示了IReader::readLong方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: opaque
//.........这里部分代码省略.........
float f;
if (!reader.readFloat(f))
return false;
atts.set(attributeID, f);
len -= 4;
} else {
// float[] array = new float[len/4];
// for (int i=0; i<array.length; i++) {
// array[i] = in.readFloat();
// len-=4;
// }
// atts.set(attributeID, array);
}
break;
case IAttributes::INT:
if (len == 4) {
int i;
if (!reader.readInt(i))
return false;
atts.set(attributeID, i);
len -= 4;
} else {
// int[] array = new int[len/4];
// for (int i=0; i<array.length; i++) {
// array[i] = in.readInt();
// len-=4;
// }
// atts.set(attributeID, array);
}
break;
case IAttributes::LONG:
if (len == 8) {
int64 l;
if (!reader.readLong(l))
return false;
atts.set(attributeID, l);
len -= 8;
} else {
// long[] array = new long[len/8];
// for (int i=0; i<array.length; i++) {
// array[i] = in.readLong();
// len-=8;
// }
// atts.set(attributeID, array);
}
break;
case IAttributes::SHORT:
if (len == 2) {
short s;
if (!reader.readShort(s))
return false;
atts.set(attributeID, s);
len -= 2;
} else {
// short[] array = new short[len/2];
// for (int i=0; i<array.length; i++) {
// array[i] = in.readShort();
// len-=2;
// }
// atts.set(attributeID, array);
}
break;
case IAttributes::STRING: {
vector<wstring> vs;
while (len != 0) {
wstring s;