- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我一直在为无符号整数开发自己的 Vector 实现,以了解有关如何定义自己的构造函数的更多信息。我也没有使用任何标准库,只是为了了解更多关于如何从头开始制作 vector 的信息。
经过一些研究,我现在已经写了一些我认为应该是正确的构造函数,但我遇到了一些奇怪的错误,我似乎无法弄清楚它们出现的原因。可能是我误解了构造函数的外观?
我将不胜感激您能提供的所有帮助!
这是我认为在定义时导致错误的构造函数:
UIntVector& UIntVector::operator=(UIntVector&& other){
if (this != &other) {
unsigned int * begin = allocate(sizeof(unsigned int)*other.vsize);
unsigned int * end = (other.vAddress + (sizeof(unsigned int)*other.vsize));
copyV(other.vAddress, end, begin);
deleteV(other.vAddress, end);
vAddress = begin;
vsize = other.vsize;
other.vAddress = nullptr;
other.vsize = 0;
}
return *this;
}
这些是我在 visual studio 中遇到的错误(上面的构造函数在第 48 行):
uintvector.cpp(48): error C2059: syntax error: 'if'
uintvector.cpp(48): error C2143: syntax error: missing ';' before '{'
uintvector.cpp(48): error C2447: '{': missing function header (old-style formal list?)
uintvector.cpp(60): error C2059: syntax error: 'return'
uintvector.cpp(61): error C2059: syntax error: '}'
uintvector.cpp(61): error C2143: syntax error: missing ';' before '}'
uintvector.cpp(69): error C2143: syntax error: missing ';' before '{'
uintvector.cpp(69): error C2447: '{': missing function header (old-style formal list?)
UintVector.hpp完整代码
#include <iostream>
class UIntVector {
private:
size_t vsize;
unsigned int * vAddress;
// Will allocate memory for the vector
unsigned int * allocate(size_t size);
// Will copy the range of the
void copyV(unsigned int * begin, unsigned int * end, unsigned int * dest);
// Will delete reserved memory.
void deleteV(unsigned int * begin, unsigned int * end);
void reset(void);
std::size_t size() const;
unsigned int * getAddress();
public:
// If UIntVector is called without parameter it should have 0 elements.
UIntVector();
// A constructor that just takes a single argument and then we create a vector with 7 containers.
UIntVector(std::size_t length);
// A copy constuctor.
// Probably have to be explicit due to otherwise converting, don't know though
UIntVector(const UIntVector& original);
// Should be a deconstructor.
~UIntVector();
// Should be a move constructor
UIntVector(UIntVector&& other);
// initializer_list
UIntVector(std::initializer_list<int> list);
// a copy-assignment, and a move-assignment, operator taking another UIntVector (potentially of a different size), and;
UIntVector& operator=(UIntVector& other);
/*
– overloads of operator[] that makes it possible to access/modify elements at a desired index.
? The first element of the container shall be at index 0.
? An exception of type std::out_of_range shall be thrown if a user tries
to access an index out-of-bounds
*/
unsigned int& operator[](size_t index) const;
};
UIntVector.cpp完整代码:
#include <iostream>
#include "UIntVector.hpp"
// If UIntVector is called without parameter it should have 0 elements.
UIntVector::UIntVector() {
vAddress = allocate(0);
vsize = 0;
// should create just an empty vector
}
// A constructor that just takes a single argument and then we create a vector with 7 containers.
UIntVector :: UIntVector(std::size_t length) {
// should take length and create a vector with 7 containers.
vAddress = allocate(length);
vsize = length;
}
// A copy constuctor.
// Probably have to be explicit due to otherwise converting, don't know though
UIntVector::UIntVector(const UIntVector& original) {
std::size_t originalsize = original.size();
vAddress = allocate(originalsize);
vsize = originalsize;
unsigned int a = originalsize*(sizeof(unsigned int));
unsigned int * end = original.vAddress + a;
copyV(original.vAddress, end, vAddress);
}
// Should be a deconstructor
UIntVector::~UIntVector() {
deleteV(vAddress, vAddress + (sizeof(unsigned int)*vsize));
}
// Should be a move constructor
UIntVector::UIntVector(UIntVector&& other) {
vAddress = other.getAddress();
vsize = other.size();
other.vsize = 0;
other.vAddress = nullptr;
}
// Should be a constructor with initializer_list
UIntVector::UIntVector(std::initializer_list<int> list) {
// std::initializer_list
}
// a copy-assignment, and a move-assignment, operator taking another UIntVector (potentially of a different size), and;
UIntVector& UIntVector::operator=(UIntVector& other){
if (this != &other) {
unsigned int * begin = allocate(sizeof(unsigned int)*other.vsize);
unsigned int * end = (other.vAddress + (sizeof(unsigned int)*other.vsize));
copyV(other.vAddress, end, begin);
deleteV(other.vAddress, end);
vAddress = begin;
vsize = other.vsize;
other.vAddress = nullptr;
other.vsize = 0;
}
return *this;
}
/*
– overloads of operator[] that makes it possible to access/modify elements at a desired index.
? The first element of the container shall be at index 0.
? An exception of type std::out_of_range shall be thrown if a user tries
to access an index out-of-bounds
*/
unsigned int& UIntVector::operator[](size_t index) const {
try {
unsigned int * indexadress = vAddress + (sizeof(unsigned int)*index);
return *indexadress;
}
catch (std::out_of_range& e) {
std::cout << "Out of range: " << e.what() << "\n";
}
catch (std::exception& e) {
std::cout << "Some other exception: " << e.what() << "\n";
}
}
// Will allocate memory for the vector
unsigned int * UIntVector :: allocate(size_t size) {
vsize = size;
return (unsigned int *)malloc(sizeof(unsigned int) * size);
}
// Will copy the range of the
void UIntVector :: copyV(unsigned int * begin, unsigned int * end, unsigned int * dest) {
while (begin != end){
*dest = *begin;
begin += sizeof(unsigned int);
dest += sizeof(unsigned int);
}
}
void UIntVector :: deleteV(unsigned int * begin, unsigned int * end) {
while (begin != end){
free(begin);
begin += sizeof(unsigned int);
}
}
void UIntVector::reset(void) {
unsigned int * address = getAddress();
unsigned int a = {};
for (int i = 0; i < size(); i++) {
*address = a;
address += sizeof(unsigned int);
}
}
std::size_t UIntVector :: size(void) const {
return vsize;
}
unsigned int * UIntVector::getAddress(void){
return vAddress;
}
最佳答案
原来是visual studio版本问题,我下载的是visual studio 2013而不是最新的Mircosoft Visual Studio Community 2015。
我猜这是由于新标准,这个程序是为 c++11 编写的,因此我得到了错误。非常感谢大家提供的测试帮助。
关于c++ - 复制赋值构造函数中的语法错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32715170/
在此处回答的另一个问题中,我发现了以下 JavaScript代码: function _dom_trackActiveElement(evt) { if (evt && evt.target)
if (A == 0) OR (B == 0) 怎么说? 最佳答案 只是为了讽刺: if (A === 0 || B === 0) 关于语法,我们在Stack Overflow上找到一个类似的问题:
var ret = [] ,xresult = document.evaluate(exp, rootEl, null, X
我一直在寻找一些类似于下例的 JavaScript。有人可以解释一下吗,因为我以前从未见过这样编写的 JavaScript。 “SomethingHere”和冒号代表什么?我习惯于看到函数 myFun
这是我的程序: delimiter // drop procedure if exists migContactToActor; create procedure migContactToActor(
我遇到了一个问题。我一直在使用 gcc 编译/汇编我的 C 代码一段时间,并且习惯了阅读 Intel 汇编语法。我在生成程序集文件时使用了 -masm=intel 标志。 但是最近因为公司迁移,拿到了
自上而下和自下而上语法有什么区别?举个例子就太好了。 最佳答案 首先,语法本身不是自上而下或自下而上的,解析器是(尽管有些语法可以被其中一个解析,但不能被另一个解析)。 从实践的角度来看,主要区别在于
我知道这是草率的代码,但它是: display dialog ("Start Screensaver. Please type: matrix, coffee, waffles, star, wate
这个问题已经有答案了: Giving name to a loop (6 个回答) 已关闭 8 年前。 我见过这个字符在 C# 中使用,就像 Java 中的扩展一样,但最近我在代码中发现了这个 loo
我正在尝试编写一个函数来检查字符串是否为回文,但我认为在使用字符串指针时存在一些错误。这段代码有什么问题? #include #include #define MAX 1000 int IsPalin
所以在this question我询问了一些 Javascript 是如何被压缩的。问题已得到解答,但以下片段让我非常困惑,以至于我不得不问另一个问题。在这里: for (Y = 0; $ = 'zx
假设我有一个接受这些参数的函数。 int create(Ptr * p,void * (*insert)(void *, void *)) { //return something later } 结
这个问题已经有答案了: Bitwise '&' operator (6 个回答) 已关闭 5 年前。 我在代码中找到了这个,但我从未遇到过像 & 这样的事情,仅 && if ((code & 1) =
我在处理继承类及其中的构造函数和方法的语法时遇到了问题。 我想实现一个类日期和一个子类 date_ISO,它们将按特定顺序设置给定的日、月、年,并通过一种方法将其写入字符串。我觉得我的基类日期工作正常
我正在尝试通过存储过程填充表,如下所示: SET @resultsCount = (SELECT COUNT(*) FROM tableA); SET @i = 0; WHILE @i THEN
谁能解释一下下面代码中的“<<”? mysql test<
刚刚开始学习 MySQL,这是一个菜鸟问题,也是我在 StackOverflow 上的第一个问题。 假设我有 12 个订单状态,我想从其中的 5 个中选择总计。我会使用: SELECT SUM(tot
我的编程背景是在学校学过一点Java。由于某些原因,JavaScript 语法往往让我感到困惑。下面的 JavaScript 代码是一种我不知道如何构成的语法模式: foo.ready = funct
我正在阅读 javascript 源代码,并且我以前没有编写过 javascript。我对它的一些语法感到困惑。 $(function () { window.onload=function
我什至不知道如何命名我想要的东西。那么让我举个例子来解释一下。 虽然火狐使用textContent,但其他浏览器支持innerText属性。顺便说一句,如果我使用了错误的术语,请纠正我。无论如何,到目
我是一名优秀的程序员,十分优秀!