17

请看下面的头文件

#pragma once

class MissileLauncher
{
public:
    MissileLauncher(void);

private:
    byte abc[3];
};

这产生了错误

Error   1   error C2143: syntax error : missing ';' before '*'  

我试着用这种方式做

byte *abc;

但它也失败了,同样的错误。但是,我注意到我可以以这种方式调用其他内置的 tyes 数组,例如 int 数组。为什么字节数组会发生这种情况?如何解决这个问题?我想在 cpp 文件中分配值。有任何想法吗?

4

7 回答 7

26

尝试

class MissileLauncher
{
public:
    MissileLauncher(void);

private:
    unsigned char abc[3];
};

或者

using byte = unsigned char;

class MissileLauncher
{
public:
    MissileLauncher(void);

private:
    byte abc[3];
};

**注意:在较旧的编译器(非 C++11)中,将该using行替换为typedef unsigned char byte;

于 2013-05-10T19:24:50.720 回答
14

如果你只想要一个字节,在 cstdint 中定义的 uint8_t 将是最具表现力的。

http://www.cplusplus.com/reference/cstdint/

于 2013-05-10T19:29:24.940 回答
9

也许您可以利用std::bitsetC++11 中可用的类型。它可以用来表示固定的N位序列,可以通过常规逻辑进行操作。

#include<iostream>
#include<bitset>

class MissileLauncher {
 public:
  MissileLauncher() {}
  void show_bits() const {
    std::cout<<m_abc[2]<<", "<<m_abc[1]<<", "<<m_abc[0]<<std::endl;
  }

  bool toggle_a() {
    // toggles (i.e., flips) the value of `a` bit and returns the
    // resulting logical value
    m_abc[0].flip();
    return m_abc[0];
  }

  bool toggle_c() {
    // toggles (i.e., flips) the value of `c` bit and returns the
    // resulting logical value
    m_abc[2].flip();
    return m_abc[2];
  }

  bool matches(const std::bitset<3>& mask) {
    // tests whether all the bits specified in `mask` are turned on in
    // this instance's bitfield
    return ((m_abc & mask) == mask);
  }

 private:
  std::bitset<3> m_abc;
};

typedef std::bitset<3> Mask;
int main() {
  MissileLauncher ml;

  // notice that the bitset can be "built" from a string - this masks
  // can be made available as constants to test whether certain bits
  // or bit combinations are "on" or "off"
  Mask has_a("001");       // the zeroth bit
  Mask has_b("010");       // the first bit
  Mask has_c("100");       // the second bit
  Mask has_a_and_c("101"); // zeroth and second bits
  Mask has_all_on("111");  // all on!
  Mask has_all_off("000"); // all off!

  // I can even create masks using standard logic (in this case I use
  // the or "|" operator)
  Mask has_a_and_b = has_a | has_b;
  std::cout<<"This should be 011: "<<has_a_and_b<<std::endl;

  // print "true" and "false" instead of "1" and "0"
  std::cout<<std::boolalpha;

  std::cout<<"Bits, as created"<<std::endl;
  ml.show_bits();
  std::cout<<"is a turned on? "<<ml.matches(has_a)<<std::endl;
  std::cout<<"I will toggle a"<<std::endl;
  ml.toggle_a();
  std::cout<<"Resulting bits:"<<std::endl;
  ml.show_bits();  
  std::cout<<"is a turned on now? "<<ml.matches(has_a)<<std::endl;
  std::cout<<"are both a and c on? "<<ml.matches(has_a_and_c)<<std::endl;
  std::cout<<"Toggle c"<<std::endl;
  ml.toggle_c();
  std::cout<<"Resulting bits:"<<std::endl;
  ml.show_bits();    
  std::cout<<"are both a and c on now? "<<ml.matches(has_a_and_c)<<std::endl;  
  std::cout<<"but, are all bits on? "<<ml.matches(has_all_on)<<std::endl;
  return 0;
}

使用 gcc 4.7.2 编译

g++ example.cpp -std=c++11

我得到:

This should be 011: 011
Bits, as created
false, false, false
is a turned on? false
I will toggle a
Resulting bits:
false, false, true
is a turned on now? true
are both a and c on? false
Toggle c
Resulting bits:
true, false, true
are both a and c on now? true
but, are all bits on? false
于 2013-05-10T19:35:09.037 回答
7

字节不是 C 或 C++ 中的标准类型。试试 char,它通常至少 8 位长。

于 2013-05-10T19:24:17.173 回答
2

字节不是 C/C++ 中的标准数据类型,但它仍然可以按照我想你想要的方式使用。方法如下:回想一下,一个字节是一个 8 位内存大小,它可以表示 -128 和 127 之间的任何整数,包括 128 和 127。(该范围内有 256 个整数;8 位可以表示 256——2 位的 8 次方——不同的值。)。还记得 C/C++ 中的 char 是一个字节(八位)。因此,在 C/C++ 中拥有 byte 数据类型所需要做的就是将此代码放在源文件的顶部: #define byte char 所以您现在可以声明 byte abc[3];

于 2014-02-28T13:27:16.173 回答
1

您可以使用 Qt,如果您不知道,它是 C++,带有一堆额外的库和类等等。Qt 有一个非常方便的 QByteArray 类,我确信它会满足您的需求。

http://qt-project.org/

于 2013-12-20T15:24:11.990 回答
-2

字节在 C/C++ 中不是标准类型,所以用 . 表示char

这样做的一个优点是您可以将 abasic_string视为允许安全存储和函数传递的字节数组。char[]这将帮助您避免在使用各种形式的和时可能遇到的内存泄漏和分段错误char*

例如,这会创建一个字符串作为空值的字节数组:

typedef basic_string<unsigned char> u_string;

u_string bytes = u_string(16,'\0');

这允许对其他值进行标准按位运算char,包括存储在其他string变量中的值。例如,异或另一个cross的char值:u_stringbytes

u_string otherBytes = "some more chars, which are just bytes";
for(int i = 0; i < otherBytes.length(); i++)
    bytes[i%16] ^= (int)otherBytes[i];
于 2016-01-07T23:16:22.447 回答