【发布时间】:2016-09-23 02:24:28
【问题描述】:
我有最新的 gcc 编译器。 gcc (Ubuntu 6.2.0-3ubuntu11~14.04) 6.2.0
在 code::blocks 上,我将编译器默认设置为 GNU Compiler。
我得到的错误是这样的
错误:无法将
{<expression error>}从<brace-enclosed initializer list>转换为std::unique_ptr<int []>
问题出在我底部的头文件中。
这是我在课堂上做的一个实验室,我认为它上周运行良好 - 编译头文件给了我结果,但是当我从 arrayclass.cpp 文件构建时,它给了我这个错误。
这是我的实现文件 ArrayClass.cpp:
#include "ArrayClass.h"
#include <memory>
using std::make_unique;
ArrayClass::ArrayClass(int capacity)
: arrSize{capacity},
arr{make_unique<int[]>(capacity)}
{
}
void ArrayClass::insert(int value)
{
if (currentSize < arrSize) {
arr[currentSize++] = value;
}
}
void ArrayClass::set(int i, int value)
{
if (i >= 0 && i < currentSize) {
arr[i] = value;
}
}
int ArrayClass::get(int i) const
{
if (i >= 0 && i < currentSize) {
return arr[i];
}
else {
return 0;
}
}
int ArrayClass::capacity() const
{
return arrSize;
}
int ArrayClass::size() const
{
return currentSize;
}
这是我的头文件:
#ifndef ArrayClass_header
#define ArrayClass_header
#include <memory>
using std::unique_ptr;
using std::make_unique;
class ArrayClass
{
public:
// Constructors and Destructors
// Default constructor
// POST: Created an ArrayClass object with an array of size def_size
// Compiler default suffices (see variable initializations at end of header)
ArrayClass() = default;
// Constructor
// PRE: capacity > 0
// POST: Created an ArrayClass object with an array of size capacity
// PARAM: capacity = size of the array to allocate
ArrayClass(int capacity);
// Destructor
// POST: All dynamic memory associated with object de-allocated
// ~ArrayClass();
// Set the value of the next free element
// PRE: currentSize < arraySize
// POST: Element at index currentSize set to value
// PARAM: value = value to be set
void insert(int value);
// Return an element's value
// PRE: 0 <= i < arraySize
// POST: Returned the value at index i
// PARAM: i = index of value to be returned
int get(int i) const;
// Set an element's value
// PRE: 0 <= i < arraySize
// POST: Element at index i set to value
// PARAM: i = index of element to be changed
// value = value to be set
void set(int i, int value);
// POST: Return the currently allocated space
int capacity() const;
// POST: Return the number of elements
int size() const;
// The default capacity
static constexpr int def_capacity {10};
private:
int arrSize {def_capacity};
int currentSize {0};
unique_ptr<int[]> arr {make_unique<int[]>(capacity)};
};
#endif
【问题讨论】:
-
最好不要将
using声明放在标题中,以防有人想使用您的标题但没有usings -
已投票关闭为错字,因为问题只是缺少
def_。 -
我也会注意到这一点,干杯