C++中如何使用联合体节约内存

这期内容当中小编将会给大家带来有关C++中如何使用联合体节约内存,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。

Reason(原因)

A union allows a single piece of memory to be used for different types of objects at different times. Consequently, it can be used to save memory when we have several objects that are never used at the same time.

联合体使用同一块内存管理在存在于不同时刻的不同类型的对象。也就是说,当不同的对象永远不会同时使用的时候,使用联合体可以节约内存。

Example(示例)

union Value {
   int x;
   double d;
};

Value v = { 123 };  // now v holds an int
cout << v.x << '\n';    // write 123
v.d = 987.654;  // now v holds a double
cout << v.d << '\n';    // write 987.654

But heed the warning: Avoid "naked" unions。

但是要留意这条准则:C.181:避免原始的联合体。

Example(示例)

// Short-string optimization

constexpr size_t buffer_size = 16; // Slightly larger than the size of a pointer

class Immutable_string {
public:
   Immutable_string(const char* str) :
       size(strlen(str))
   {
       if (size < buffer_size)
           strcpy_s(string_buffer, buffer_size, str);
       else {
           string_ptr = new char[size + 1];
           strcpy_s(string_ptr, size + 1, str);
       }
   }

   ~Immutable_string()
   {
       if (size >= buffer_size)
           delete string_ptr;
   }

   const char* get_str() const
   {
       return (size < buffer_size) ? string_buffer : string_ptr;
   }

private:
   // If the string is short enough, we store the string itself
   // instead of a pointer to the string.
   union {
       char* string_ptr;
       char string_buffer[buffer_size];
   };

   const size_t size;
};

上述就是小编为大家分享的C++中如何使用联合体节约内存了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注行业资讯频道。