好的,所以我之前问了一个关于使用模板类构建数组的问题,老实说我还是不知道我在做什么。所以我只是发布我所拥有的和我得到的错误。
主要DSHW.cpp
#include "stdafx.h"
#include <iostream>
#include <vector>
#include <string>
#include <numeric>
#include <cstdlib>
#include "GroupedArray.h"
using namespace std;
/**
* Add a string representing an integer to an existing integer value
* that represents a partial sum
* Returns the sum
*/
int convertAndAdd(int sum, string next) {
return sum + atoi(next.c_str());
}
int main()
{
// array of strings based on what you get if you download
// results from a quiz on Blackboard
string submission[] = {"aaa111", "Smith", "Sam",
"Question ID 1", "To optimize the query select * from books b, publisher p where b.publisherID = p.id and b.subjectID <> 1 and p.city = 'Chicago' , (",
"an index on the publisher table's id is only helpful if it is a hashing-based index",
"10", "0", "",
"Question ID 2", "Postgres (",
"supports multiple languages for writing stored procedures",
"10", "10", "",
"Question ID 3", "For a business rule object A can have several B's , (",
"should be implemented using a table other than the table representing A's",
"10", "10", ""
};
const int STUDENT_COLUMNS = 3;
const int NUM_QUESTIONS = 3;
const int GROUP_SIZE = 6;
const int MAX_SCORE_FIELD = 3;
const int SCORE_FIELD = 4;
GroupedArray<string, int> quiz((submission+STUDENT_COLUMNS), NUM_QUESTIONS, GROUP_SIZE);
int total_score;
int max_score;
cout << "This is a test driver for the GroupedArray class" << endl;
total_score = accumulate(quiz.nthField(SCORE_FIELD), quiz.end(), 0, convertAndAdd);
max_score = accumulate(quiz.nthField(MAX_SCORE_FIELD), quiz.end(), 0, convertAndAdd);
cout << "The score = " << total_score << endl;
cout << "The percentage = " << 100 * total_score / (float) max_score << endl;
// comment this next line out for Linux or Mac OS
system("pause");
return 0;
}
GroupedArray.h
#ifndef _GROUPEDARRAY
#define _GROUPEDARRAY
#include "stdafx.h"
#include <vector>
#include <string>
using namespace std;
template<class T>
class GroupedArray{
protected:
T container;
T col;
T num;
public:
GroupedArray(T a, T b, T c){ //constructor
container = a;
size = b;
col = c;
}
nthField(T place){ //goes through array searching for first instance of parameter
for(T i=0; i < place; i++);
}
end(){
for(int* it = std::begin(array); it!=std::end(array); ++it)
{
cout << *it << endl;
}
return 0;
}//takes no parameter and points to end of array.
~GroupedArray(); //Destrutor
};
#endif
当我尝试构建时,我收到以下错误
groupedarray.h(23):错误C4430:缺少类型说明符-int假设。注意:C ++不支持default-int
groupedarray.h(34):参见类模板实例化&#39; GroupedArray&#39;正在编制
groupedarray.h(25):警告C4183:&#39; nthField&#39;:缺少返回类型;假设是一个返回&#39; int&#39;
的成员函数groupedarray.h(26):错误C4430:缺少类型说明符 - 假定为int。注意:C ++不支持default-int
groupedarray.h(32):警告C4183:&#39;结束&#39;:缺少返回类型;假设是一个返回&#39; int&#39;
的成员函数dshw1.cpp(43):错误C2977:&#39; GroupedArray&#39; :模板参数太多
groupedarray.h(12):见GroupedArray&#39;
的声明dshw1.cpp(43):错误C2514:&#39; GroupedArray&#39; :class没有构造函数
groupedarray.h(12):见GroupedArray&#39; dshw1.cpp(50):错误C2662:&#39; GroupedArray :: end&#39; :不能转换这个&#39;来自&GroupedArray&#39;的指针到GroupedArray&amp;&#39;
dshw1.cpp(50):错误C2780:&#39; _Ty std :: accumulate(_InIt,_InIt,_Ty)&#39; :预计有3个参数 - 提供4个
我在这里非常绝望,所以感谢所有的帮助。
答案 0 :(得分:1)
你的问题是你缺少编译器需要的一些参数。
这里它说你需要指定什么类型,因为c ++不支持假设它是什么
groupedarray.h(23): error C4430: missing type specifier -int assumed. Note: C++ does not support default-int
这里举个例子 nthField(T place){//通过数组搜索参数的第一个实例 for(T i = 0; i&lt; place; i ++); }
你不应该在c ++中使用end这个词我觉得它是保留的
另一个问题是累积只需要3个参数,你用4个参数传递它
total_score = accumulate(quiz.nthField(SCORE_FIELD), quiz.end(), convertAndAdd);
并且有更多的错误,所以我想你明白了,错误说明了一切所以仔细阅读。
答案 1 :(得分:0)
我看到的一个错误是你尝试制作一个GroupedArray,而分组数组只有一个模板参数,T或者制作分组阵列模板,或者当使分组数组只使用一个模板参数时。