📜  使用 memcpy 命令浮动到字节数组并返回 c++ - C++ 代码示例

📅  最后修改于: 2022-03-11 14:44:45.750000             🧑  作者: Mango

代码示例2
void float2Bytes(float val,byte* bytes_array){
  // Create union of shared memory space
  union {
    float float_variable;
    byte temp_array[4];
  } u;
  // Overite bytes of union with float variable
  u.float_variable = val;
  // Assign bytes to input array
  memcpy(bytes_array, u.temp_array, 4);
}