gpt4 book ai didi

c++ - C++ 中的模板化静态成员函数

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:31:28 25 4
gpt4 key购买 nike

我编写了一个简单的测试程序来尝试学习如何在 C++ 中使用模板静态成员函数。代码可以编译,但不能正常工作(打印出一些垃圾)。我想我使用的是正确的语法。我读过 thisthis和其他一些东西,但仍然不知道我做错了什么。代码如下:

#include <iostream>
using namespace std;

class Util {
public:
Util();
virtual ~Util();

template <typename T> static void printTab(T tab[]);
};

template <typename T>
void Util::printTab(T tab[]) {
for (unsigned int i=0; i<sizeof(tab)/sizeof(tab[0]); i++) {
cout << tab[0] << " ";
}
cout << endl;
}

int main() {

float tabFloat[5] {1, 2, 3, 4, 5};
unsigned char tabChar[3] {1, 2, 3};

Util::printTab(tabFloat);
Util::printTab(tabChar);

return 0;
}

感谢任何提示。

最佳答案

您需要将大小作为另一个模板参数传递:

#include <iostream>
using namespace std;

class Util {
public:
Util();
virtual ~Util();

template <typename T,int N> static void printTab(T (&tab)[N])
{
for (int i=0; i<N; i++) {
cout << tab[i] << " ";
}
cout << endl;
}
};

int main() {

float tabFloat[5] {1, 2, 3, 4, 5};
unsigned char tabChar[3] {1, 2, 3};

Util::printTab(tabFloat);
Util::printTab(tabChar);
}

关于c++ - C++ 中的模板化静态成员函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8286035/

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