- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我已经用 C++ 编写了一些代码,但是当我尝试编译时,出现了一个非常奇怪的错误,这是我不应该出现的。这是我的代码:
#include <iostream>
using namespace std;
#include "articles.h"
int main() {
// Création des articles
const Stylo s1 ("s1", "Stylo jade", "Watertruc", 500, "Noir");
const Ramette r1 ("r1", "Ramette haute qualité", "Clairefont", 95, 80);
// Création des lots (10 % de réduction)
const Lot l1 ("l1", s1, 5, 10);
cout << s1 << "\n" << r1 << "\n" << l1 << "\n";
}
文章.h
#ifndef ARTICLES_H
#define ARTICLES_H
using namespace std;
#include <string>
#include <iostream>
class Article
{
public:
string getReference() const ;
virtual string getDescriptif() const;
virtual double getPU() const;
string getMarque() const;
virtual void Afficher(ostream&) const;
~Article();
protected:
Article(string);
string reference;
private:
};
//ostream& operator<<(ostream& os, const Article& art);
class ArticleUnitaire : public Article {
public:
ArticleUnitaire(string);
ArticleUnitaire(string, string, string, double);
string getMarque() const;
void setMarque(string&);
double getPU() const;
void setPU(double&);
void setDescriptif(string&);
string getDescriptif() const;
virtual void Afficher(ostream&) const;
~ArticleUnitaire();
protected:
string marque;
double pu;
string descriptif;
private:
};
inline ostream& operator<<(ostream& os, const Article& art) {
art.Afficher(os);
return os;
}
class Stylo : public ArticleUnitaire {
public:
Stylo(string, string, string, double, string);
virtual void Afficher(ostream&) const;
string getCouleur() const;
~Stylo();
protected:
private:
string couleur;
};
class Ramette : public ArticleUnitaire {
public:
Ramette(string, string, string, double, int);
virtual void Afficher(ostream&) const;
int getGrammage() const;
~Ramette();
protected:
private:
int grammage;
};
class Lot : public Article {
public:
Lot(string, Article, int, int);
double getPU() const;
string getDescriptif() const;
string getMarque() const;
int getNbArticles() const;
void setNbArticles(int&);
int getPourcentage() const;
void setPourcentage(int&);
Article getArticle() const;
void setArticle(Article&);
virtual void Afficher(ostream&) const;
~Lot();
protected:
private:
int nb;
int pourcentage;
Article art;
};
#endif // ARTICLES_H
文章.cc
using namespace std;
#include <typeinfo>
#include <string>
#include <sstream>
#include "articles.h"
/* Article */
Article::Article(string ref) : reference(ref) {};
string Article::getReference() const {
return reference;
}
string Article::getMarque() const {
return "Sans marque";
}
void Article::Afficher(ostream& os) const {
os << " : reference = " << getReference() << " ; descriptif = " << getDescriptif() << " ; marque = " << getMarque() << " ; PU = " << getPU();
}
Article::~Article() {};
/* Article Unitaire */
ArticleUnitaire::ArticleUnitaire(string r) : Article(r) {};
ArticleUnitaire::ArticleUnitaire(string r, string d, string m, double p) : Article(r), marque(m), descriptif(d), pu(p) {};
string ArticleUnitaire::getMarque() const {
return marque;
}
void ArticleUnitaire::setMarque(string& m) {
marque = m;
}
double ArticleUnitaire::getPU() const {
return pu;
}
void ArticleUnitaire::setPU(double& p) {
pu = p;
}
void ArticleUnitaire::setDescriptif(string& d) {
descriptif = d;
}
string ArticleUnitaire::getDescriptif() const {
return descriptif;
}
ArticleUnitaire::~ArticleUnitaire() {};
/* Stylo */
Stylo::Stylo(string r, string d, string m, double p, string c) : ArticleUnitaire(r,d,m,p), couleur(c) {};
string Stylo::getCouleur() const {
return couleur;
}
void Stylo::Afficher(ostream& os) const {
Article::Afficher(os);Lot
os << " ; couleur = " << getCouleur();
}
Stylo::~Stylo() {};
/* Ramette */
Ramette::Ramette(string r, string d, string m, double p, int g) : ArticleUnitaire(r,d,m,p), grammage(g) {};
int Ramette::getGrammage() const {
return grammage;
}
void Ramette::Afficher(ostream& os) const {
Article::Afficher(os);
os << " ; grammage = " << getGrammage();
}
Ramette::~Ramette() {};
/* Lot */
Lot::Lot(string r, Article a, int n, int p) : Article(r), art(a), nb(n), pourcentage(p) {};
double Lot::getPU() const {
return nb * art.getPU() * (100 - pourcentage) / 100;
}
string Lot::getDescriptif() const {
stringstream sstm;
sstm << "Lot de" << nb << " *" << art.getDescriptif() << "* ";
return sstm.str();
}
string Lot::getMarque() const {
return art.getMarque();
}
int Lot::getNbArticles() const {
return nb;
}
void Lot::setNbArticles(int& nbArticles) {
nb = nbArticles;
}
int Lot::getPourcentage() const {
return pourcentage;
}
void Lot::setPourcentage(int& p) {
pourcentage = p;
}
Article Lot::getArticle() const {
return art;
}
void Lot::setArticle(Article& a) {
art = a;
}
void Lot::Afficher(ostream& os) const {
Article::Afficher(os);
os << " ;reduction = " << getPourcentage() << " ; compose de " << getNbArticles() << " [" << art << " ]";
}
Lot::~Lot() {};
当我编译时:
g++ -Wall testArticles.cc
/tmp/ccwWjTWv.o: In function `main':
testArticles.cc:(.text+0xe8): undefined reference to `Stylo::Stylo(std::string, std::string, std::string, double, std::string)'
testArticles.cc:(.text+0x218): undefined reference to `Ramette::Ramette(std::string, std::string, std::string, double, int)'
testArticles.cc:(.text+0x2da): undefined reference to `Lot::Lot(std::string, Article, int, int)'
testArticles.cc:(.text+0x307): undefined reference to `Article::~Article()'
testArticles.cc:(.text+0x36f): undefined reference to `Lot::~Lot()'
testArticles.cc:(.text+0x37b): undefined reference to `Ramette::~Ramette()'
testArticles.cc:(.text+0x387): undefined reference to `Stylo::~Stylo()'
testArticles.cc:(.text+0x3b4): undefined reference to `Stylo::~Stylo()'
testArticles.cc:(.text+0x3e8): undefined reference to `Stylo::~Stylo()'
testArticles.cc:(.text+0x41c): undefined reference to `Stylo::~Stylo()'
testArticles.cc:(.text+0x450): undefined reference to `Stylo::~Stylo()'
testArticles.cc:(.text+0x48c): undefined reference to `Ramette::~Ramette()'
testArticles.cc:(.text+0x4c0): undefined reference to `Ramette::~Ramette()'
testArticles.cc:(.text+0x4f4): undefined reference to `Ramette::~Ramette()'
testArticles.cc:(.text+0x533): undefined reference to `Lot::~Lot()'
testArticles.cc:(.text+0x556): undefined reference to `Article::~Article()'
testArticles.cc:(.text+0x56a): undefined reference to `Lot::~Lot()'
testArticles.cc:(.text+0x57e): undefined reference to `Lot::~Lot()'
testArticles.cc:(.text+0x58f): undefined reference to `Ramette::~Ramette()'
testArticles.cc:(.text+0x5a0): undefined reference to `Stylo::~Stylo()'
/tmp/ccwWjTWv.o: In function `Article::Article(Article const&)':
testArticles.cc:(.text._ZN7ArticleC2ERKS_[_ZN7ArticleC5ERKS_]+0x17): undefined reference to `vtable for Article'
collect2: error: ld returned 1 exit status
我访问了所有可能的网站,每个人都说了同样的话:看起来我搞砸了#include(s)。但我一直非常小心,我确信这是关于一些愚蠢和次要的事情,但已经 6 个小时了,我开始放弃了。这很奇怪。
最佳答案
您需要确保将所有 .cc 文件编译在一起。 g++ -Wall articles.cc testArticles.cc
或任何实际调用的文件也是如此。这会将每个文件编译成一个 .o(目标)文件并为您将它们链接在一起。如果需要,您可以分多个步骤执行此操作:
g++ -Wall -c articles.cc
g++ -Wall -c testArticles.cc
g++ articles.o testArticles.o
关于c++ - 未定义对析构函数的引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13982834/
C语言sscanf()函数:从字符串中读取指定格式的数据 头文件: ?
最近,我有一个关于工作预评估的问题,即使查询了每个功能的工作原理,我也不知道如何解决。这是一个伪代码。 下面是一个名为foo()的函数,该函数将被传递一个值并返回一个值。如果将以下值传递给foo函数,
CStr 函数 返回表达式,该表达式已被转换为 String 子类型的 Variant。 CStr(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CSng 函数 返回表达式,该表达式已被转换为 Single 子类型的 Variant。 CSng(expression) expression 参数是任意有效的表达式。 说明 通常,可
CreateObject 函数 创建并返回对 Automation 对象的引用。 CreateObject(servername.typename [, location]) 参数 serv
Cos 函数 返回某个角的余弦值。 Cos(number) number 参数可以是任何将某个角表示为弧度的有效数值表达式。 说明 Cos 函数取某个角并返回直角三角形两边的比值。此比值是
CLng 函数 返回表达式,此表达式已被转换为 Long 子类型的 Variant。 CLng(expression) expression 参数是任意有效的表达式。 说明 通常,您可以使
CInt 函数 返回表达式,此表达式已被转换为 Integer 子类型的 Variant。 CInt(expression) expression 参数是任意有效的表达式。 说明 通常,可
Chr 函数 返回与指定的 ANSI 字符代码相对应的字符。 Chr(charcode) charcode 参数是可以标识字符的数字。 说明 从 0 到 31 的数字表示标准的不可打印的
CDbl 函数 返回表达式,此表达式已被转换为 Double 子类型的 Variant。 CDbl(expression) expression 参数是任意有效的表达式。 说明 通常,您可
CDate 函数 返回表达式,此表达式已被转换为 Date 子类型的 Variant。 CDate(date) date 参数是任意有效的日期表达式。 说明 IsDate 函数用于判断 d
CCur 函数 返回表达式,此表达式已被转换为 Currency 子类型的 Variant。 CCur(expression) expression 参数是任意有效的表达式。 说明 通常,
CByte 函数 返回表达式,此表达式已被转换为 Byte 子类型的 Variant。 CByte(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CBool 函数 返回表达式,此表达式已转换为 Boolean 子类型的 Variant。 CBool(expression) expression 是任意有效的表达式。 说明 如果 ex
Atn 函数 返回数值的反正切值。 Atn(number) number 参数可以是任意有效的数值表达式。 说明 Atn 函数计算直角三角形两个边的比值 (number) 并返回对应角的弧
Asc 函数 返回与字符串的第一个字母对应的 ANSI 字符代码。 Asc(string) string 参数是任意有效的字符串表达式。如果 string 参数未包含字符,则将发生运行时错误。
Array 函数 返回包含数组的 Variant。 Array(arglist) arglist 参数是赋给包含在 Variant 中的数组元素的值的列表(用逗号分隔)。如果没有指定此参数,则
Abs 函数 返回数字的绝对值。 Abs(number) number 参数可以是任意有效的数值表达式。如果 number 包含 Null,则返回 Null;如果是未初始化变量,则返回 0。
FormatPercent 函数 返回表达式,此表达式已被格式化为尾随有 % 符号的百分比(乘以 100 )。 FormatPercent(expression[,NumDigitsAfterD
FormatNumber 函数 返回表达式,此表达式已被格式化为数值。 FormatNumber( expression [,NumDigitsAfterDecimal [,Inc
我是一名优秀的程序员,十分优秀!