gpt4 book ai didi

c++ - 重载=运算符时如何获取数组的长度

转载 作者:行者123 更新时间:2023-12-02 10:32:25 26 4
gpt4 key购买 nike

class myclass{
//definitions here
};
myclass e;
int myarray[10];
/*
Do something...
*/
e = myarray;

为了使 e = myarray成为可能,我重载了=运算符。而且我必须获得传入数组长度的长度。
template <class T>
int getarrlen(T& arr)
{
return sizeof(arr) / sizeof(arr[0]);
}

myclass::operator=(int obj[]) {
int len=getarrlen(obj);
//Do something...
}

但是 getarrlen(obj)的返回值始终为1。

那么,如何在重载函数中获取obj []的长度?
顺便说一句,我也尝试过 int size = *(&arr + 1) - arr;,它也不起作用。

更新0:
为了这:
template<typename T1, int size>
int getarrlen(T1(&)[size]) { return size; }

我有一个 C2784 compiler-error in Visual Studio ...奇怪...
Update1:​​
@AlgirdasPreidžius链接提供的代码适用于主要功能,但不适用于我的代码:(
另外,为了使其更加明显,我尝试了以下方法:
#include<iostream>
using namespace std;
int x[10];
//Begin of the copied code
template <std::size_t N>
struct type_of_size
{
typedef char type[N];
};

template <typename T, std::size_t Size>
typename type_of_size<Size>::type& sizeof_array_helper(T(&)[Size]);

#define sizeof_array(pArray) sizeof(sizeof_array_helper(pArray))
//End
void myv(int a[]) {
const std::size_t n = sizeof_array(a); // constant-expression!
cout << n << endl;
}

int main() {
int a[20] = {1,2,3,4,5};
myv(a);
}

该代码不起作用。我试图在 template <typename T, std::size_t Size>之上添加 void myv(int a[]) {,但它也不起作用...

最佳答案

我准备了一个解决方案,使您可以按照问题顶部所示的方式进行作业。

我用相同的机制实现了一个赋值运算符和一个拷贝构造函数。目前,我将仅适用于C样式int数组,因为该类的std::vector<int>包含整数。

我们需要使用模板,以便编译器有机会推断类型。

该软件已通过Microsoft Visual Studio Community 2019进行了蜜蜂测试
版本16.5.2。

请参阅:

#include <iostream>
#include <vector>
#include <algorithm>
#include <iterator>

struct Test {
// The data. At the moment fixed to "int"
std::vector<int> data{};

// Default constructor
Test() {}

// Copy constructor
template<typename T>
Test(T& t) {

// Number of Elements
size_t size = (sizeof (decltype(t))) / (sizeof (std::remove_extent<std::remove_reference<decltype(t)>::type>::type));
// Copy the data
data.clear();
std::copy_n(&t[0], size, std::back_inserter(data));
}

// Assignment operator
template<typename T>
Test &operator =(T& t) {

// Number of Elements
size_t size = (sizeof(decltype(t))) / (sizeof(std::remove_extent<std::remove_reference<decltype(t)>::type>::type));
// Copy the data
data.clear();
std::copy_n(&t[0], size, std::back_inserter(data));
return *this;
}
};

int main() {

// Some simple Lambda to print the contents of an STL container
auto print = [](const auto& container) -> void { std::copy(container.begin(), container.end(),
std::ostream_iterator<std::decay<decltype(*container.begin())>::type>(std::cout, " ")); std::cout << '\n'; };

// Define an Plain C-Style array
int a[10] = {0,1,2,3,4,5,6,7,8,9};

// Define instance of class
Test t1;
// Assignment
t1 = a;

print(t1.data);

// Define instance of another class and use copy constructor
Test t2(a);

print(t2.data);
return 0;
}

关于c++ - 重载=运算符时如何获取数组的长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61779359/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com