我目前正在用 C++ 编写自己的字符串实现。(只是为了锻炼)。
但是,我目前有这个复制构造函数:
// "obj" has the same type of *this, it's just another string object
string_base<T>(const string_base<T> &obj)
: len(obj.length()), cap(obj.capacity()) {
raw_data = new T[cap];
for (unsigned i = 0; i < cap; i++)
raw_data[i] = obj.data()[i];
raw_data[len] = 0x00;
}
我想提高一点性能。所以我想到了使用memcpy()
只是复制obj
到*this
.
就像这样:
// "obj" has the same type of *this, it's just another string object
string_base<T>(const string_base<T> &obj) {
memcpy(this, &obj, sizeof(string_base<T>));
}
覆盖这样的数据是否安全*this
?或者这可能会产生任何问题?
提前致谢!