在模板类中,我有一个函数可以在选定索引的另一个数组中插入一个numb-elements数组。
template <class T>
void my_vect<T> ::insert(const T &ob, size_t ind, size_t numb)
{
int i, j = 0;
if (ind == last + 1)
{
for (i = 0; i < numb; i++)
push(ob[i]);
}
else if (ind > last + 1)
msg.mess(my_mess::WARN_ARR_SMALL);
else
{
if (last + numb > ndim)
{
msg.mess(my_mess::WARN_ARR_FULL);
realloc();
}
last += numb;
for (i = last; i = (ind + numb); i--)
{
dat[i] = dat[i - numb];
}
for (i = ind; i < (ind + numb); i++)
dat[i] = ob[j++];
}
}
我也有一个接口类,我有一个管理插入功能
void my_interf::insertarr()
{
typ *ob = NULL;
size_t ind, numb, i;
cout << "Podaj indeks: ";
cin >> ind;
cout << "Podaj ilosc elementow tablicy: ";
cin >> numb;
ob = new typ[numb];
for (i = 0; i < numb; i++)
{
cout << "Podaj " << i << " element tablicy: " << endl;
cin >> ob[i];
}
vect.insert(*ob, ind, numb);
}
typ是typedef,当我把另一个类型mcoord放入时,我收到错误
error C2676: binary '[' : 'const typ' does not define this operator or a conversion to a type acceptable to the predefined operator
mcoord.h
#pragma once
#include "stdafx.h"
#include "my_mess.h"
#include <iostream>
using namespace std;
class mcoord
{
protected:
double *pcoord;
my_mess msg;
public:
mcoord(double xx, double yy);
mcoord();
mcoord(const mcoord &ob);
~mcoord() { delete[] pcoord; }
friend ostream & operator << (ostream &strm, const mcoord &ob);
friend istream & operator >> (istream &strm, mcoord &ob);
mcoord & operator = (const mcoord &ob);
int operator == (const mcoord &praw) const;
private:
void alloc();
};
当我将typ定义为int时,我得到错误
error C2109: subscript requires array or pointer type
这两个错误都在使用ob [i]和ob [j ++]的行中的模板类中。 我找不到任何解决方案,所以我将非常感谢您的帮助。
答案 0 :(得分:1)
您需要将该函数声明为:
template <class T>
void my_vect<T> ::insert(const T *ob, size_t ind, size_t numb)
换句话说,让ob
指针不是引用。