我提到了其他一些类似的问题,它们通常会指出循环问题。但是我看不到代码中的任何地方。
arrayi.cpp:
#include "arrayi.h"
// Member function definitions for class Array
// Initialize static data member at file scope
template<typename T>
int Array<T>::arrayCount = 0; // no objects yet
// Default constructor for class Array
template<typename T>
Array<T>::Array(int arraySize)
{
++arrayCount; // count one more object
size = arraySize; // default size is 10
ptr = new int[size]; // create space for array
assert(ptr != 0); // terminate if memory not allocated
int i;
for (i = 0; i < size; i++)
ptr[i] = 0; // initialize array
}
arrayi.h:
#ifndef ARRAYI_H_
#define ARRAYI_H_
#include <iostream>
#include <cstdlib>
#include <cassert>
using namespace::std;
template<typename T> class Array;
template<typename T>
ostream &operator<< (ostream& output, const Array<T> &a);
template<typename T>
class Array
{
friend ostream &operator<< <>(ostream &output, const Array<T> &a);
public:
Array(int = 10); //constructor
Array(const Array &); //copy constructor
private:
int *ptr; //ptr to first array element
int size; //size of the array
static int arrayCount; // #of arrays instantiated
};
#include "arrayi.t"
#endif
arrayi.t:
#ifndef ARRAYI_T_
#define ARRAYI_T_
#include <iostream>
#include <cstdlib>
#include <cassert>
using namespace::std;
// Default constructor for class Array
template<typename T>
Array<T>::Array(int arraySize)
{
cout << "calling the constructor \n";
}
// Overloaded output operator for class Array
template<typename T>
ostream &operator<<(ostream &output, const Array<T> &a)
{
int i;
output << "{ ";
for (i = 0; i < a.size; i++)
{
output << a.ptr[i] << ' ';
if ((i + 1) % 10 == 0)
output << "}" << endl;
} //end for
if (i % 10 != 0)
output << "}" << endl;
return output; // enables cout << x << y;
}
#endif
我已经在上下扫描我的代码好几个小时了,因此,非常感谢任何帮助,在此先感谢您!任何困惑或破损的代码都可能是因为这是正在进行的工作,但是目前除了提到的错误之外没有其他错误。删除函数“Array::Array(int arraySize)”时,所有显示的内容都会编译。
最佳答案
arrayi.t定义
Array<T>::Array(int arraySize)
{
cout << "calling the constructor \n";
}
arrayi.cpp定义
template<typename T>
Array<T>::Array(int arraySize)
{
++arrayCount; // count one more object
size = arraySize; // default size is 10
ptr = new int[size]; // create space for array
assert(ptr != 0); // terminate if memory not allocated
int i;
for (i = 0; i < size; i++)
ptr[i] = 0; // initialize array
}
不允许对具有相同参数的相同功能进行两个定义。
解:
选择一个真正的构造函数。删除另一个。如果在arrayi.cpp中选择实现,请确保对需要它的translation units可见。这很可能意味着将其移至arrayi.t。
请给Template static variable阅读有关其他问题的提示。
关于c++ - 错误C2995 : Function template has already been defined. No circularity found,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54817387/