这是学习和使用c++语言过程中,出现的错误及解决方法列表,随着学习和实践深入,此列表将不断更新。
转换丢失限定符
#include
int main()
{
const int iSize = 1024;
int iCnt = 0;
const int &iRefval = iSize;//ok
int &iRef = iSize;//不允许非const引用绑定到const对象
const int &icRef = iCnt;//const引用可以绑定到右值
std::cout<<"iRefval: "<
const class std::allocator
No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called
//prog2.cpp
#include
#include
#include
using namespace std;
void main()
{
//Define a list that holds elements that are deques that hold ints
deque ideque(10,1);
list ilist(ideque.begin(),ideque.end());
for(list::const_iterator itbegin=ilist.begin(),itend=ilist.end();itbegin!=itend;++itbegin)
cout<<*itbegin<
解决方法:vc 6.0对模板库支持不够好,使用vs2010编译通过。
//返回单词出现的行号set
const set & TextQuery::RunQuery(string word) const
{
map< string,set >::const_iterator it = m_mapWordLine.find(word);
if(it != m_mapWordLine.end())
return it->second;
else
return set();//emptyset
}
解决方法:愿意是返回set对象的const引用以减轻复制set对象的负担,但是这里返回空的set对象的局部引用是错误的,c++ primer 原文采用的方法是返回set对象,不使用引用,这也是一种解决方法。另外使用std::vector
Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
//输出一行中所有字符
void printchar(string &line)
{
istringstream iss(line);
string word;
while(iss>>word)
for(vector::const_iterator itbegin=word.begin(),itend=word.end();itbegin != itend; ++itbegin)
cout<<*itbegin<
解决方法:标准库string对象可以使用迭代器操作 ,但是其迭代器要正确使用,应该使用string::const_iterator 后者使用下标操作来获取string对象中的字符。
代码如下:
#include
#include //使用back_inserter
#include
#include
using namespace std;
void main()
{
vector ivec;
try
{
fill_n(ivec.begin(),10,1);//error should use fill_n (back_inserter(ivec), 10, 1);
for(vector::iterator itbegin=ivec.begin(),itend=ivec.end();itbegin!=itend;++itbegin)
cout<<*itbegin<
fill_n (back_inserter(ivec), 10, 1);
C:\Program Files\Microsoft Visual Studio\VC98\include\algorithm(588) : see declaration of 'sort'
prog7.cpp(8) : error C2782: 'void __cdecl std::sort(_RI,_RI)' : template parameter '_RI' is ambiguous
could be 'class std::reverse_iterator
or 'int *'
代码如下:
#include
#include
#include
using namespace std;
void main()
{
vector ivec1(10,1);
sort(ivec1.begin(), ivec1.rend());//类型不匹配的错误 可以在编译时检查出来
}
sort函数重载有两个版本,所以出现上面的错误提示,无论哪个版本,要求给定一对迭代器范围,而在标准库中,有输入范围的泛型算法要求其两个迭代器类型完全一样,包括const属性。要么都是const,要么都是非const,否则无法通过编译。
上述的begin函数返回是普通迭代器,而rend函数返回的是反向迭代器,因此两个实参类型不匹配,出现了上述错误,解决方法就是正确的传递实参,使用类型完全一样的迭代器标记范围。
代码如下:
// header file Sales_item.h
#include
#include
class Sales_item
{
// private members
private:
std::string isbn;
unsigned units_sold;
double revenue;
//public method
public:
..
//Overloaded Operator as member function
Sales_item& operator+=(const Sales_item&);//Compound Assignment Operators
Sales_item operator+(const Sales_item& lhs, const Sales_item& rhs);
};
// implement file Sales_item.cpp
using std::istream;
using std::ostream;
//Overloaded Operator as nonmember functions
inline Sales_item Sales_item::operator+(const Sales_item& lhs, const Sales_item& rhs)
{
Sales_item ret(lhs); // copy lhs into a local object that we'll return
ret += rhs; // add in the contents of rhs
return ret; // return ret by value ,not by reference
}
解决方法:+操作符包括两个操作数,应该重载为普通非成员函数。
注意重载操作符的形参数目(包括成员函数的隐式 this 指针)与操作符的操作数数目相同。对称的操作符,如算术操作符、相等操作符、关系操作符和位操作符,最好定义为普通非成员函数。因此+应该重载为普通非成员函数。这里重载为成员函数时多了一个this形参,故对于+操作符来说,出现参数过多的错误。
即书写为:
// header file
Sales_item operator+(const Sales_item& lhs, const Sales_item& rhs);
//implement file
//Overloaded Operator as nonmember functions
inline Sales_item operator+(const Sales_item& lhs, const Sales_item& rhs)
{
Sales_item ret(lhs); // copy lhs into a local object that we'll return
ret += rhs; // add in the contents of rhs
return ret; // return ret by value ,not by reference
}
....(省略后续同类错误)
Sales_item.exe - 4 error(s), 0 warning(s)
错误原因之一,在于将inline函数的实现放在了单独的实现文件中了,解决方法:
将inline函数的实现放置在头文件中。具体请参考:《类的内联函数的实现应该放在哪里》一文。
可能是“conflict.cpp(4) : int count”
或 “C:\Program Files\Microsoft Visual Studio 11.0\VC\INCLUDE\xutility(3251) : iterato
r_traits<_Iter>::difference_type std::count(_InIt,_InIt,const _Ty &)”
conflict.cpp(12) : error C2872: “count”: 不明确的符号
可能是“conflict.cpp(4) : int count”
或 “C:\Program Files\Microsoft Visual Studio 11.0\VC\INCLUDE\xutility(3251) : iterato
r_traits<_Iter>::difference_type std::count(_InIt,_InIt,const _Ty &)”
出错代码
#include
using namespace std;
int count = 0;
int increment()
{
return ++count;// error, identifier count is ambiguous
}
int main()
{
increment();
cout<<"count= "<
std::count
,因此引起歧义,导致出错。解决方法:
1)尽量少用directive方式来引用命名空间:(directive方式即using namespace std;)
#include
using std::cout;//使用命名空间一个名字
using std::endl;
int count = 0;
int increment()
{
return ++count;
}
int main()
{
increment();
cout<<"count= "<
2)使用命名空间引用变量,在命名空间中定义变量、函数和类。
#include
using namespace std;
namespace global {
int count = 0;//重新定义一个命名空间
}
int increment()
{
return ++global::count;
}
int main()
{
increment();
cout<<"count= "<
出错代码:
#include
#include
using std::cout;
using std::endl;
using std::string;
//const引用形参举例
//非const引用形参只能与完全同类型的非const对象关联
std::size_t find_char(string &s,char c)
{
string::size_type i = 0;
while(i != s.size() && s[i] != c)
++i;
if(i == s.size())
return string::npos;
else
return i;
}
int main(int argc, char *argv[])
{
//字面值常量为const对象,调用出错
if(find_char("Hello, world.",'.') != string::npos)
{
cout<<"a sentence."<
错误信息如下:
C:\Program Files\Microsoft Visual Studio 11.0\VC\INCLUDE\xmemory0(601) : error C2512: “Foo”: 没有
合适的默认构造函数可用
C:\Program Files\Microsoft Visual Studio 11.0\VC\INCLUDE\xmemory0(600): 编译类 模板 成员函数
“void std::allocator<_Ty>::construct(_Ty *)”时
with
[
_Ty=Foo
]
C:\Program Files\Microsoft Visual Studio 11.0\VC\INCLUDE\xmemory0(751): 参见对正在编译的函数
模板 实例化“void std::allocator<_Ty>::construct(_Ty *)”的引用
with
[
_Ty=Foo
]
C:\Program Files\Microsoft Visual Studio 11.0\VC\INCLUDE\type_traits(743): 参见对正在编译的
类 模板 实例化“std::allocator<_Ty>”的引用
with
[
_Ty=Foo
]
C:\Program Files\Microsoft Visual Studio 11.0\VC\INCLUDE\vector(655): 参见对正在编译的类 模
板 实例化“std::is_empty<_Ty>”的引用
with
[
_Ty=std::allocator
]
prog26.cpp(15): 参见对正在编译的类 模板 实例化“std::vector<_Ty>”的引用
with
[
_Ty=Foo
]
错误代码:
#include
#include
using namespace std;
//顺序容器举例
class Foo
{
public:
Foo(int i):ival(i){}
private:
int ival;
};
int main(int argc, char *argv[])
{
vector empty;
vector bad(10);
vector ok(10,1);
return 0;
}
主要看下面的bad(10)这一行,也同样会报错。错误的原因在于类类型对象没有默认的构造函数,因此无法正确初始化,构造vector失败。解决办法,即是为类添加默认的构造函数。
转换丢失限定符
出错代码:例子来自c++ primer 4th
Screen& Screen::display(std::ostream& os) const
{
os << contents << '\n';
return *this;
}
解决办法: c++语言规定,不能从const成员函数返回指向类对象的普通引用,const成员函数只能返回*this作为一个const引用。因此解决办法即是,把成员函数声明为 const Screen& display(std::ostream &os) const;
出错代码:
//成员函数定义
Screen& Screen::move(index r,index c)
{
index row = r * width;
cursor = row + c;
return *this;
}
const Screen& Screen::display(std::ostream& os) const
{
os << contents << '\n';
return *this;
}
//main中处理
myScreen.display(cout).move(4,0).set('#').display(cout);
解决办法: 通过返回调用函数的对象的引用,可以将一些操作链接起来简化代码书写。
这里要注意,display函数返回的是const引用,因此在调用move函数中返回非const引用时无法实现转换导致出错。
解决的办法就是通过成员函数是否为const实现函数重载,定义两套函数,分别作为const成员函数和非const成员函数。
代码片段如下:
//通过是否为const成员函数实现重载
Screen& display(std::ostream &os)
{do_display(os);return *this;}
const Screen& display(std::ostream &os) const
{do_display(os);return *this;}
//提取公共函数
void do_display(std::ostream &os) const
{os<
这样非常量myScreen调用非const版本的display
函数,而const的blank对象调用const版本的display函数,从而避免了混淆。
解决办法:类的成员可以在构造函数体类或者构造函数列表中初始化,但是某些类型,例如默认构造函数的类类型成员、const后者引用类型的成员则必须在构造函数初始化列表中进行初始化。例如:
//const成员初始化
class ConstInit {
public:
ConstInit(int i,int j)
{
ival = i;
cival = j;
rival = ival;
}
private:
int ival;
const int cival;
int &rival;
};
int main(int argc, char *argv[])
{
ConstInit ci;
}
//const成员初始化
#include
using std::cout;
class ConstInit {
public:
ConstInit(int i=0):ival(i),cival(i),rival(i){}
private:
int ival;
const int cival;
int &rival;
//只要初始化表达式是一个常量,可以再定义体中进行初始化
static const int period = 30;
public:
static const unsigned int ARRAY[3];//静态常量数组
};
const unsigned int ConstInit::ARRAY[3] = {1,3,5};
int main(int argc, char *argv[])
{
ConstInit ci;
cout<
prog29.cpp(12) : 参见“Foo::Foo”的声明
prog29.cpp(7) : 参见“Foo”的声明
出错代码:
#include
using std::cout;
using std::endl;
//为了禁止复制,类必须显式声明其复制构造函数为private
//要禁止类的友元和成员复制对象,可以声明但不定义复制构造函数
class Foo
{
public:
Foo(int i=0):ival(i){}
int getVal() const {return ival;}
private:
Foo(const Foo& orig){ival = orig.ival;};//声明为私有
private:
int ival;
};
int main(int argc, char *argv[])
{
Foo foo1(1);//ok,调用构造函数
cout<
解决办法: 这里旨在说明三种初始化方式,foo1使用构造函数初始化,foo2使用默认值调用构造函数,而foo3代用私有的复制构造函数因而产生错误。注意,为了禁止复制,类必须显式声明其复制构造函数为private;要禁止类的友元和成员复制对象,可以声明但不定义复制构造函数。遇到这种错误,说明赋值构造函数函数的使用不当。
这种错误可能就是与内存有关的释放问题。这里的错误示例代码主要是为了说明复制构造函数,尤其是含有指针类型或者有成员表示在构造函数中分配的其他资源的情况下应该应当被正确处理。
错误示例代码:
#include
#include
using std::cout;
using std::endl;
//复制构造函数举例1
//此例包含指针成员,没有复制构造函数出错
struct Node
{
Node(char *n="",int a = 0)
{
name = strdup(n);
strcpy(name,n);
age = a ;
}
~Node()
{
delete[] name;
}
char *name;
int age;
};
int main()
{
Node node1("Roger",20),node2(node1);
//print Roger 20 Roger 20
cout<
这段程序执行时输出:
Roger 20 Roger 20
Wendy 20 Wendy 30
并产生错误:
0x77D9FCAA (ntdll.dll) (prog31.exe 中)处有未经处理的异常: 0xC0000374: 堆已损坏。 (参数: 0x77DC6668)。
解决办法:包含指针类型或者构造函数中包含资源分配的类,需要定义自己的复制构造函数而不是依赖编译器合成的复制构造函数。
这里依赖编译器合成的复制构造函数,从node1构造node2时,node2.name指针进行简单的重定向,定向到node1.name所指向的字符串,因此二者共享同一份字符串地址,因此再执行strcpy(node2.name,"Wendy");出现了数据不一致行的错误,两者的name全部都是Wendy,而年龄更新却是正确的。同样,由于共享同一份字符串地址,在析构函数中释放同一份内存两次,导致堆已损坏的错误。当然,如果在析构函数中删除name数组空间后,将name指针置为空,不会产生堆损坏错误。但是在析构函数中将指针置为空,将隐藏程序bug,与复制构造函数相关的错误依然存在。
因此解决的办法,就是正确定义Node类如下:
#include
#include
using std::cout;
using std::endl;
//复制构造函数举例2
struct Node
{
Node(char *n="",int a = 0)
{
name = strdup(n);
strcpy(name,n);
age = a ;
}
//复制构造函数
Node(const Node& node)
{
name = strdup(node.name);
age = node.age;
}
//赋值操作符
Node& operator=(const Node& n)
{
if(this != &n)
{
if(name != NULL)
delete [] name;//释放先前空间
name = strdup(n.name);//重新分配内存
age = n.age;
}
return *this;
}
//析构函数
~Node()
{
delete[] name;
}
char *name;
int age;
};
int main()
{
Node node1("Roger",20),node2(node1),node3("Tom",22);
//print Roger 20 Roger 20
cout<
with
[
_Ty=int
]
原因如下: 无法从“std::vector<_Ty>”转换为“const std::allocator<_Ty>”
with
[
_Ty=int
]
没有可用于执行该转换的用户定义的转换运算符,或者无法调用该运算符
prog33.cpp(13) : error C2664: “std::vector<_Ty>::vector(const std::allocator<_Ty> &)”: 不能将参数
1 从“std::vector<_Ty>”转换为“const std::allocator<_Ty> &”
with
[
_Ty=double
]
and
[
_Ty=int
]
and
[
_Ty=double
]
原因如下: 无法从“std::vector<_Ty>”转换为“const std::allocator<_Ty>”
with
[
_Ty=int
]
and
[
_Ty=double
]
没有可用于执行该转换的用户定义的转换运算符,或者无法调用该运算符
错误代码:
#include
#include
#include
using std::vector;
using std::list;
using std::cout;
//容器初始化举例
int main()
{
vector ivec;//使用默认构造函数
vector ivec2(ivec);//初始化为同型容器的副本
list ilist(ivec);//错误,容器类型不同
vector dvec(ivec);//错误,容器元素类型不同
return 0;
}
解决办法: c++标准库中不允许容器初始化为不同类型或者容器元素类型不同的容器的副本。如果需要从其他容器的元素初始化容器,可以使用一对迭代范围的构造函数初始化。例如:
vector ivec;
list ilist(ivec.begin(),ivec.end());
vector dvec(ivec.begin(),ivec.end());
错误代码:
#include
#include
using std::vector;
using std::cout;
using std::endl;
//迭代器失效举例-避免存储end操作返回的迭代器
int main()
{
vector ivec;
ivec.push_back(3);
ivec.push_back(5);
ivec.push_back(7);
vector::iterator end = ivec.end();
for(vector::iterator first = ivec.begin();first != end;++first)
cout<<*first<::iterator first = ivec.begin();first != end;++first)
cout<<*first<
]
错误代码:
int ia[] = {1,5,3,3,4};
const int array_size = sizeof(ia)/sizeof(*ia);
list ilist(ia,ia+array_size);
vector temp;
copy(ilist.begin(),ilist.end(),
front_inserter(temp));//使用push_front插入,导致错误
解决办法: 迭代器与底层容器之间的操作实际上存在限制关系,也就是说并不是所有的容器都支持诸如push_front之类的操作。这里front_inserter将使用push_front方法来向vector插入元素,但是vector并不支持push_front操作。因此,解决的方法就是使用back_inserter 或者inserter函数返回的插入迭代器来进行操作。
错误代码:
LikedList.h
#ifndef _PAIR_H_
#define _PAIR_H_
#include
template
class Node
{
public:
Node(T dat,Node *n=NULL):data(dat),next(n){}
public:
T data;
Node *next;
};
template
class LinkedList
{
public:
LinkedList():head(NULL){}
~LinkedList();//free space here
void add(T e);//add element
std::string toString();//print content
public:
Node *head;
};
#endif
LinkedList.cpp
#include "LinkedList.h"
//free space
template LinkedList::~LinkedList()
{
Node * ptr = head;
while(ptr != NULL)
{
Node * tmp = ptr->next;
delete ptr;
ptr = tmp;
}
}
template void LinkedList::add(T e)
{
Node *node = new Node(e);
node->next = head;
head = node;//update head
}
template std::string LinkedList::toString()
{
std::string asString("List:[");
for(Node* ptr = head;ptr != NULL;ptr = ptr->next)
asString += std::to_string(ptr->data);
asString += "]";
return asString;
}
#include
#include "LinkedList.h"
int main()
{
LinkedList list;
list.add(1);
list.add(2);
list.add(3);
std::cout<
主要有两种方式,方式一在头文件中包含类的实现,合并成一个文件来编译.
方式二,通过使用export关键字,让编译器知道要记住给定的模板定义。当然要看编译器支持否,我的vs2013编译提示, warning C4237: 目前还不支持“export”关键字,但已保留该关键字供将来使用。因此这里使用方式一,例如代码:
#ifndef _PAIR_H_
#define _PAIR_H_
#include
template
class Node
{
public:
Node(T dat,Node *n=NULL):data(dat),next(n){}
public:
T data;
Node *next;
};
template
class LinkedList
{
public:
LinkedList():head(NULL){}
~LinkedList();//free space here
void add(T e);//add element
std::string toString();//print content
public:
Node *head;
};
template LinkedList::~LinkedList()
{
Node * ptr = head;
while(ptr != NULL)
{
Node * tmp = ptr->next;
delete ptr;
ptr = tmp;
}
}
template void LinkedList::add(T e)
{
Node *node = new Node(e);
node->next = head;
head = node;//update head
}
template std::string LinkedList::toString()
{
std::string asString("List:[");
for(Node* ptr = head;ptr != NULL;ptr = ptr->next)
asString += std::to_string(ptr->data);
asString += "]";
return asString;
}
#endif
测试结果:
List:[321].
这个错误发生纯属意外,但是让人纠结了半天。在c++中类的成员变量和函数是不可以重名的,这与java之中不同。例如使用数组实现一个栈时,ArrayStack类的top指针成员和基类的函数top重名,导致的错误,一开始让人莫名其妙。
错误代码:
Stack基类中声明了函数top:
template
class Stack
{
public:
virtual ~Stack(){};
virtual void push(T data)=0;
virtual T pop()=0;
virtual T top()=0;
virtual bool isEmpty()=0;
virtual void clear() = 0;
virtual int getSize()=0;
};
利用数组实现时:
template
class ArrayStack : public Stack
{
public:
T top()
{
if(top == base)
{
throw std::logic_error("top at empty stack");
}
return *(top-1);
}
//other member function
private:
T *base,*top;
int capacity;
};
因为类使用了指针top,同时实现了函数top,重名错误,因此导致了编译器给出如下错误信息:
d:\ds\stack\ArrayStack.h(79) : error C2365: “ArrayStack::top”: 重定义;以前的定义是“成员函数”
d:\ds\stack\ArrayStack.h(58) : 参见“ArrayStack::top”的声明
d:\ds\stack\ArrayStack.h(81): 参见对正在编译的类 模板 实例化“ArrayStack”的引用
d:\ds\stack\ArrayStack.h(79) : error C2365: “ArrayStack::top”: 重定义;以前的定义是“成员函数”
with
[
T=int
]
d:\ds\stack\ArrayStack.h(58) : 参见“ArrayStack::top”的声明
with
[
T=int
]
StackTest.cpp(6): 参见对正在编译的类 模板 实例化“ArrayStack”的引用
with
[
T=int
]
解决办法,遵照合理的命名规则。
st std::basic_string<_Elem,_Traits,_Alloc> &”推导 模板 参数
...(省略)
algorithm(3619) : error C2676: 二进制“<”:“Person”不定义该运算符或到预定义运算符可接收的类型的转换
错误代码示例:
#include
#include
#include
#include
class Person
{
public:
// default constructor
Person() : age(0) {}
Person(int age, std::string name) {
this->age = age; this->name = name;
}
int age;
std::string name;
};
int main()
{
std::vector vecPerson;
vecPerson.push_back(Person(24,"Calvin"));
vecPerson.push_back(Person(30,"Benny"));
vecPerson.push_back(Person(28,"Alison"));
std::sort(vecPerson.begin(),vecPerson.end());
//using c++11
for(const Person& p : vecPerson)
std::cout<
解决办法: 定义STL算法需要的关系操作符。在上例中,sort算法默认使用std::less,而std::less使用类的<操作符,因此可以定义一个全局的
重载<操作符的函数来满足sort算法需求,如下:
inline bool operator<(const Person& a, const Person& b)
{
return a.age < b.age;
}
24, Calvin
28, Alison
30, Benny
Std::less
错误代码示例:
template >
class PriorityQueue : public Queue
{
template
T PriorityQueue::dequeue()
{
if(index == 0)
{
std::cerr<<"logic error : dequeue at empty queue. "<
Compare是一个函数对象,函数对象使用方式两种:
第一种,显式构造一个函数对象,然后使用它,例如:
std::less a; //定义一个函数对象
if(a(x,y)) ...
if(std::less()(x,y)) ...
这里给出我书写一段代码引起的段错误:
#include
#include
using namespace std;
void printList(list::iterator itCur,list::iterator end);
int main()
{
list iList;
for(int i = 0;i < 10 ;i++)
iList.push_back(i);
printList(iList.begin(),iList.end());
}
void printList(list::iterator itCur,list::iterator end)
{
if( itCur == end)
{
std::cout<
这段程序中,利用尾递归输出链表,实际上将进入死循环,导致输出时linux下提示段错误。在传递参数时,利用printList(itCur++,end)却没有达到预期效果,原因是后置自增变量用错了,这个错误很低级,需要引起注意。
解决办法,就是通过++itCur后者*itCur++来传递正确的参数。
这是一个不经留意犯的错误。
错误代码如下:
while(!stack.empty()) {
if(top == stack.top()->left && stack.top()->right != 0) {
stack.push(stack.top()->right);
visit(stack.top()->right);//should visit last top right,not the new top right
break;
}else {
top = stack.top();
stack.pop();
}
}
这里没有意识到,stack.top->right本身已经改变了,使用不一致的数据导致出错。
段错误,简而言之,是由于你使用已经释放的内存,写入只读的内存引起的错误。参考自:SO segmentation fault
例子1:解引用空指针
int main()
{
//dereference a null pointer,can cause segmentation fault
int *p = 0;
*p = 1;
return 0;
}
int main()
{
// write to a portion of memory that has marked as read-only
char *str = "Foo";// compiler marks the constant string as read-only
*str = 'b';//which means this is illegal and results in a segfault
return 0;
}
No.27 warning: xxx will be initialized after [-Wreorder]
c++使用参数列表进行初始话时,初始化成员变量的顺序和声明的顺序相同,如果在写参数列表时没有按照声明的顺序写,则出现此警告。
这个警告是为了避免在参数列表初始化时,值之间初始化产生依赖的错误。解决方法就是按照声明的顺序书写参数初始化列表。
Class C {
int a;
int b;
C():b(1),a(2){} //warning, should be C():a(2),b(1)
}
No.28 error: ‘std::ios_base::ios_base(const std::ios_base&)’ is private
ios_base(const ios_base&);
synthesized method ‘std::basic_ostream
return s;
这个错误的原因大概是std::ios_base类的拷贝构造函数是私有的,从return s语句返回时缺少一个合成的构造拷贝构造函数完成流的复制。
错误代码示例:
#include
#include
struct Person {
std::string name;
Person(std::string n):name(n){}
};
// should return a reference to std::ostream
std::ostream operator<<(std::ostream& s,const Person &p) {
s << p.name;
return s;
}
int main() {
Person p(std::string("Tom"));
std::cout<
重载输出操作符时,由于流对象不能复制,因此如果以值(by value)形式返回时,无法完成从s到std::osream的复制,因此导致上述错误。
解决方法是返回流的引用,即改变函数的返回类型为:std::ostream&即可。
No 29 . passing xxx as 'this' argument of xxx discards qualifiers
这是由于常量对象调用了非常量成员函数引起的错误,错误原因在于常量对象只能调用常量成员函数(因为常量成员函数约定不对非静态成员进行修改).
来自 stackoverflow的例子:
#include
#include
using namespace std;
class StudentT {
public:
int id;
string name;
public:
StudentT(int _id, string _name) : id(_id), name(_name) {
}
int getId() { // 应该声明为const成员
return id;
}
string getName() { // 应该声明为const成员
return name;
}
};
inline bool operator< (StudentT s1, StudentT s2) {
return s1.getId() < s2.getId();
}
int main() {
set st;
StudentT s1(0, "Tom");
StudentT s2(1, "Tim");
st.insert(s1);
st.insert(s2);
set :: iterator itr;
for (itr = st.begin(); itr != st.end(); itr++) {
cout << itr->getId() << " " << itr->getName() << endl;
}
return 0;
}
解决方法就是将getId和getName方法声明为const成员,即在函数末尾加上const关键字.
No.30 error: cannot dynamic_cast ‘b’ (of type ‘class Base*’) to type ‘class Derived
在将父类型转换为子类型时,可以使用static_cast和dynamic_cast.如果使用dynamic_cast,它要求父类必须为多态的,即要求至少有一个虚函数,因此需要仔细检查类定义中有无虚函数,例如可以将析构函数设置为虚函数.
更正后的代码为(来自: c++ - converting a base class pointer to a derived class pointer):
#include
using namespace std;
class Base {
public:
Base() {};
virtual ~Base() {}; // make it polymorphic
};
template
class Derived: public Base {
T _val;
public:
Derived() {}
Derived(T val): _val(val) {}
T raw() {return _val;}
};
int main()
{
Base * b = new Derived(1);
Derived * d = dynamic_cast* >(b);
cout << d->raw() << endl;
return 0;
}
当实参与形参匹配的过程中,如果提供了多个转换操作符,而每个转换操作符都不能与形参类型匹配,需要额外的标准转换时,则没有哪种转换明显优于另一种,则编译器提示这个转换存在二义性,例如(来自c++ primer 4th):
// this example show paramaters matching process
// note SmallInt is a bad design
#include
using namespace std;
class SmallInt {
public:
SmallInt(int x=0):val(x){ cout << "int ctor" << endl; }
SmallInt(double x):val(x){ cout << "double ctor" << endl;}
operator int() const { cout << "int conversion " << endl;return val;}
operator double() const { cout << "double conversion" << endl; return val;}
private:
std::size_t val;
};
void compute(int x){}
void fp_compute(double x){}
void extended_compute(long double x){}
int main() {
SmallInt si;
compute(si); // using SmallInt::operator int() const
fp_compute(si); // using SmallInt::operator double() const
extended_compute(si); // error: ambiguous
return 0;
}
No.32 /usr/include/c++/4.9/bits/stl_iterator_base_types.h:165:53: error: ‘int’ is not a class, struct, or union type
先看下面的代码(来自: SO):
#include
#include
#include
using namespace std;
double distance(int a, int b)
{
return fabs(a-b);
}
int main()
{
vector age;
age.push_back(10);
age.push_back(15);
cout << distance(age[0],age[1]);
return 0;
}
这段代码初看起来并无错误,编译时提示上述错误,原因在于使用std命名空间,而std命名空间中已经有了std::distance函数.
原型为:
template
typename iterator_traits::difference_type
distance (InputIterator first, InputIterator last);
这段代码的错误之处,在于std命名空间中的distance屏蔽了本地的distance函数,解决方法即为,显式调用本地方法,例如使用
::distance(age[0],age[1])
或者将distance放在一个命名空间中,例如:
namespace foo
{
double distance(int a, int b)
{
return fabs(a-b);
}
}
int main()
{
foo::distance(x,y); //now you're calling your own distance function.
}
No.33 auto_ptr is not dereferencable
如下图所示:
错误代码示例:
// Example : Transferring ownership from
// one auto_ptr to another
void testAutoPtr6()
{
std::auto_ptr pt1(new TC);
std::auto_ptr pt2;
pt1->someFunc(); // OK
pt2 = pt1; // now pt2 owns the pointer, and pt1 does not
std::cout << "Content of pt1 is " << pt1.get() << std::endl;
std::cout << "Content of pt2 is " << pt2.get() << std::endl;
pt2->someFunc(); // OK
pt1->someFunc(); // error! following a null pointer
} // as we go out of scope, pt2's destructor
// deletes the pointer, but pt1's does nothing
No.34 _block_type_is_valid(phead- nblockuse)
出现这种错误的原因有多个,基本原因有四个, 可以参见:SO。
错误如下:
比较常见的错误时,把多个对象的数组当做一个对象删除了,例如:
void testSharedPtr1()
{
//std::shared_ptr pt(new TC[5]); // will crash , since default desctrctor using delete
std::shared_ptr sptr1(new TC[5],
[](TC* p) { delete[] p; });
}
这里std::shared_ptr默认使用delete删除,因此会导致出现上述错误。使用lamda表达式可以解决。
No:35 error C2280: 'std::mutex::mutex(const std::mutex &)' : attempting to reference a deleted function
std::mutex是noncopyable的结构,因此不存在拷贝构造函数,所以这里错误提示引用已经删除的函数。
错误示例代码如下:
解决方法:
将包含std::mutex的类的拷贝构造函数和赋值操作符重载函数,自定义或者标记为delete.
例如:
class Account {
public:
Account(int id_, double ba = 0.0) :id(id_), balance(ba){}
void withdraw(double amount){
balance -= amount;
}
void deposit(double amount){
balance += amount;
}
void printInfo() const {
std::cout << "Account id: " << id << " balance: " << balance << std::endl;
}
Account(const Account& other) = delete;
Account& operator=(const Account& other) = delete;
friend void transfer(Account& from, Account& to, double amount);
private:
double balance;
int id;
std::mutex m;
};