#include<iostream> #include<string> using namespace std; class A { protected: string m; double p; public: A(const string& a = "", double b = 0) { m = a; p = b; } string getM() { return m; } double getP() { return p; } virtual void Show() { cout << m << "," << p << endl; } }; class B :public A{ int s; public: B(const string& a, double b, int c = 3) { s = c; } void Show() { cout << m << "," << p << "," << s<<endl; } friend int operator+(B&, B&); }; int operator+(B& b1, B& b2) { return b1.s + b2.s; } int main() { B s1("hhh",300), s2("yyy", 2400, 2); s1.Show(); A& f = s1; f.Show(); cout << f.getM() << "," << f.getP() << endl; cout << s2.getM() << "," << s2.getP() << endl; cout << s1 + s1 << endl; }

时间: 2024-03-28 08:40:00 浏览: 20
这段代码定义了两个类 A 和 B,其中 B 继承自 A,A 中有两个数据成员 m 和 p,表示名称和价格,有一个虚函数 Show(),用于输出对象的名称和价格;B 中有一个数据成员 s,表示数量,也有一个 Show() 函数,输出对象的名称、价格和数量。B 中还重载了一个 + 运算符,用于计算两个 B 对象的数量之和。 在 main 函数中,定义了两个 B 对象 s1 和 s2,分别传入不同的参数进行初始化。然后分别调用它们的 Show() 函数进行输出。接着定义了一个 A 类型的引用 f,指向 s1 对象,并调用 f 的 Show() 函数进行输出。然后分别输出 s2 对象的名称和价格。最后调用了 s1 + s1,输出两个对象数量之和。
相关问题

#include<iostream> using namespace std; class Shape { public: virtual double area() const=0; }; class Circle:public Shape { public: Circle(double r):radius(r) { } virtual double area() const { return 3.14159*radius*radius; } protected: double radius; }; class Square:public Shape { public: Square(double s):side(s) { } virtual double area() const { return side*side; } protected: double side; }; class Rectangle:public Shape { public: Rectangle(double w,double h):width(w),height(h) { } virtual double area() const { return width*height; } protected: double width,height; }; class Trapezoid:public Shape { public: Trapezoid(double t,double b,double h):top(t),bottom(b),height(h) { } virtual double area() const { return 0.5*(top+bottom)*height; } protected: double top,bottom,height; }; class Triangle:public Shape { public: Triangle(double w,double h):width(w),height(h) { } virtual double area() const { return 0.5*width*height; } protected: double width,height; }; int main() { Circle circle(12.6); Square square(3.5); Rectangle rectangle(4.5,8.4); Trapezoid trapezoid(2.0,4.5,3.2); Triangle triangle(4.5,8.4); Shape *pt[5]= { &circle,&square,&rectangle,&trapezoid,&triangle }; double areas=0.0; for(int i=0; i<5; i++) { areas=areas+pt[i]->area(); } cout<<"total of all areas="<<areas<<endl; return 0; }这段代码若要输出Circle:498.51 Square:12.25 Rectangle:37.80 Trapezoid:10.40 Triangle:18.90,如何改进

可以将输出语句放在循环中,分别输出每个图形的面积。可以在每个 Shape 类的子类中添加一个成员函数,用于返回该图形的名称,然后在输出语句中使用该函数获取图形名称。代码如下: ``` #include<iostream> using namespace std; class Shape { public: virtual double area() const = 0; virtual string name() const = 0; // 添加获取图形名称的函数 }; class Circle : public Shape { public: Circle(double r) : radius(r) {} virtual double area() const { return 3.14159 * radius * radius; } virtual string name() const { // 返回图形名称 return "Circle"; } protected: double radius; }; class Square : public Shape { public: Square(double s) : side(s) {} virtual double area() const { return side * side; } virtual string name() const { return "Square"; } protected: double side; }; class Rectangle : public Shape { public: Rectangle(double w, double h) : width(w), height(h) {} virtual double area() const { return width * height; } virtual string name() const { return "Rectangle"; } protected: double width, height; }; class Trapezoid : public Shape { public: Trapezoid(double t, double b, double h) : top(t), bottom(b), height(h) {} virtual double area() const { return 0.5 * (top + bottom) * height; } virtual string name() const { return "Trapezoid"; } protected: double top, bottom, height; }; class Triangle : public Shape { public: Triangle(double w, double h) : width(w), height(h) {} virtual double area() const { return 0.5 * width * height; } virtual string name() const { return "Triangle"; } protected: double width, height; }; int main() { Circle circle(12.6); Square square(3.5); Rectangle rectangle(4.5, 8.4); Trapezoid trapezoid(2.0, 4.5, 3.2); Triangle triangle(4.5, 8.4); Shape* pt[] = { &circle,&square,&rectangle,&trapezoid,&triangle }; double areas = 0.0; for (int i = 0; i < 5; i++) { cout << pt[i]->name() << ":" << pt[i]->area() << " "; // 输出图形名称和面积 areas += pt[i]->area(); } cout << endl << "total of all areas=" << areas << endl; return 0; } ```

#include<iostream> #include<string> using namespace std; class Pet { protected: string name; int age; double weight; public: //Pet(string name,int age,float weight) // { // this->name=name; //this->age=age; //this->weight=weight; // } Pet() { name=""; age=0; weight=0.0; } Pet(const string&petName,int petAge,double petWeight) { name = petName; age = petAge; weight = petWeight; } string getName() { return name; } int getAge() { return age; } double getWeight() { return weight; } void setName(string name) { this->name=name; } void setAge(int age) { this->age=age; } void setWeight(double weight) { this->weight=weight; } virtual string getLifespan() { return "unknown lifespan"; } }; class Dog:public Pet { private: string breed; public: Dog(string name,int age,double weight,string breed) : Pet(name,age,weight) { this->breed=breed; } string getBreed() { return breed; } void setBreed(string breed) { this->breed=breed; } virtual string getLifespan() { if (weight>100) { return "Approximately 7 years"; } else { return "Approximately 13 years"; } } }; class Rock:public Pet { public: Rock(string name,int age,double weight) : Pet(name,age,weight) {} virtual string getLifespan() { return"Thousands of years"; } }; int main() { Pet*pet1=new Rock("Peter",1000,1000); Pet*pet2=new Dog("Mike",3,80,"Golden Retriever"); Pet*pet3=new Dog("Ham",5,80,"Labrador Retriever"); cout<<pet1->getName()<<", "<<pet1->getLifespan()<< endl; pet1->setAge(2); pet1->setWeight(1.0); cout<<pet2->getName()<<"," <<pet2->getLifespan()<<endl; cout<<"Breed: "<pet2->getBreed()<<endl; pet2->setWeight(85.0); cout<<pet3->getName()<<"," <<pet3->getLifespan()<<endl; cout<<"Breed: "<<pet3->getBreed() <<endl; pet3->setWeight(110.0); return 0; } 这段代码无法运行

这段代码其实是可以运行的,但是存在一些小问题。首先,代码开头的 `#include` 需要在每一行的末尾添加一个分号,例如 `#include<iostream>;`。其次,`Pet` 类中的构造函数不应该被注释掉,因为在 `Rock` 和 `Dog` 类中都需要调用它来初始化基类的成员变量。最后,`main` 函数中输出狗的品种时,应该使用 `cout<<"Breed: "<<pet2->getBreed()<<endl;` 和 `cout<<"Breed: "<<pet3->getBreed()<<endl;`,而不是使用两个 `<` 符号。

相关推荐

#include <iostream> #include <string> using namespace std; class Point { protected: string type; double x, y; public: Point() : type("Point"), x(0), y(0) {} Point(double x, double y) : type("Point"), x(x), y(y) {} virtual ~Point() { cout << type << " object is destroyed." << endl; } friend ostream& operator<<(ostream& os, const Point& p) { os << "Type: " << p.type << endl; os << "Coordinates: (" << p.x << ", " << p.y << ")" << endl; return os; } virtual void PrintName() { cout << "Type: " << type << endl; } }; class Circle : public Point { protected: double r; public: Circle() : Point(), r(0) { type = "Circle"; } Circle(double x, double y, double r) : Point(x, y), r(r) { type = "Circle"; } virtual ~Circle() { cout << type << " object is destroyed." << endl; } friend ostream& operator<<(ostream& os, const Circle& c) { os << static_cast<const Point&>(c); os << "Radius: " << c.r << endl; return os; } virtual void PrintName() { cout << "Type: " << type << endl; } }; class Cylinder : public Circle { protected: double h; public: Cylinder() : Circle(), h(0) { type = "Cylinder"; } Cylinder(double x, double y, double r, double h) : Circle(x, y, r), h(h) { type = "Cylinder"; } virtual ~Cylinder() { cout << type << " object is destroyed." << endl; } friend ostream& operator<<(ostream& os, const Cylinder& cy) { os << static_cast<const Circle&>(cy); os << "Height: " << cy.h << endl; return os; } virtual void PrintName() { cout << "Type: " << type << endl; } }; int main() { Point p1(1, 2); cout << p1 << endl; Circle c1(1, 2, 3); cout << c1 << endl; Cylinder cy1(1, 2, 3, 4); cout << cy1 << endl; Point* p; p = &p1; p->PrintName(); p = &c1; p->PrintName(); p = &cy1; p->PrintName(); return 0; } 写出该程序的大致流程

#include <iostream> #include <iomanip> #include <string> using namespace std; class Point { private: string type; double x, y; public: Point(string t = "", double xx = 0, double yy = 0) : type(t), x(xx), y(yy) {} Point(const Point& p) : type(p.type), x(p.x), y(p.y) {} virtual ~Point() { cout << type << " object is destroyed." << endl; } friend ostream& operator<<(ostream& os, const Point& p) { os << "Type: " << p.type << "\nX: " << fixed << setprecision(2) << p.x << "\nY: " << fixed << setprecision(2) << p.y; return os; } virtual void PrintName() { cout << "This is a Point object." << endl; } }; class Circle : public Point { private: double r; public: Circle(string t = "", double xx = 0, double yy = 0, double rr = 0) : Point(t, xx, yy), r(rr) {} Circle(const Circle& c) : Point(c), r(c.r) {} ~Circle() { cout << type << " object is destroyed." << endl; } friend ostream& operator<<(ostream& os, const Circle& c) { os << static_cast<const Point&>(c) << "\nRadius: " << fixed << setprecision(2) << c.r; return os; } virtual void PrintName() { cout << "This is a Circle object." << endl; } }; class Cylinder : public Circle { private: double h; public: Cylinder(string t = "", double xx = 0, double yy = 0, double rr = 0, double hh = 0) : Circle(t, xx, yy, rr), h(hh) {} Cylinder(const Cylinder& cy) : Circle(cy), h(cy.h) {} ~Cylinder() { cout << type << " object is destroyed." << endl; } friend ostream& operator<<(ostream& os, const Cylinder& cy) { os << static_cast<const Circle&>(cy) << "\nHeight: " << fixed << setprecision(2) << cy.h; return os; } virtual void PrintName() { cout << "This is a Cylinder object." << endl; } }; int main() { Point p1("Point1", 1, 2); Point p2("Point2", 3, 4); Circle c1("Circle1", 5, 6, 7); Circle c2("Circle2", 8, 9, 10); Cylinder cy1("Cylinder1", 11, 12, 13, 14); Cylinder cy2("Cylinder2", 15, 16, 17, 18); cout << p1 << endl; cout << p2 << endl; cout << c1 << endl; cout << c2 << endl; cout << cy1 << endl; cout << cy2 << endl; Point* ptr; ptr = &p1; ptr->PrintName(); ptr = &c1; ptr->PrintName(); ptr = &cy1; ptr->PrintName(); return 0; }c:\program files (x86)\microsoft visual c++6.0\myprojects\shiayn6\6.cpp(27) : error C2248: 'type' : cannot access private member declared in class 'Point' c:\program files (x86)\microsoft visual c++6.0\myprojects\shiayn6\6.cpp(8) : see declaration of 'type' 执行 cl.exe 时出错.

#include<iostream> #include <string> using namespace std; class Person {protected:string name; int age; public: Person(string n,int a):name(n),age(a){} virtual void display() /*虚函数显示信息,实现多态性*/ {cout<<"姓名:"<<name<<endl; cout<<"年龄:"<<age<<endl;} }; class Teacher:public Person {private:string title; string course; public: Teacher(string n,int a,string t,string c):Person(n,a){title=t;course=c;} void display() {Person::display(); cout<<"职称:"<<title<<endl; cout<<"担任课程:"<<course<<endl;} }; class Information:virtual public Person {private:double height,weight; int id; public: Information(string n,int a,int i,double h,double w):Person(n,a),id(i),height(h),weight(w){} virtual void display() {Person::display(); cout<<"学号:"<<id<<endl; cout<<"身高:"<<height<<endl; cout<<"体重:"<<weight<<endl;} }; class Study:public Information {private:string major; int score; public: static int countS; /*静态成员数据说明*/ Study(string n,int a,int i,double h,double w,string m,int s):Person(n,a),Information(n,a,i,h,w),major(m),score(s){countS++;} void display() {Information::display(); cout<<"专业:"<<major<<endl; cout<<"分数:"<<score<<endl;} friend int operator-(Study c1,Study c2); /*友元函数,重载运算符实现分数差计算*/ void displays(){cout<<score;} }; int Study::countS = 0; int operator-(Study c1,Study c2) {return c1.score-c2.score;} int main() {Teacher A("文渊",45,"导师","计算机"); A.display(); cout<<endl; Study B("子博",19,226201324,178,65,"计算机科学与技术",90); Study C("皓轩",19,226203355,176,60,"计算机科学与技术",78); B.display(); cout<<endl; C.display(); cout<<endl; cout<<"有"<<Study::countS<<"个学生"<<endl; cout<<"分数相差"<<B-C<<endl; }找出错误

最新推荐

recommend-type

BSC绩效考核指标汇总 (2).docx

BSC(Balanced Scorecard,平衡计分卡)是一种战略绩效管理系统,它将企业的绩效评估从传统的财务维度扩展到非财务领域,以提供更全面、深入的业绩衡量。在提供的文档中,BSC绩效考核指标主要分为两大类:财务类和客户类。 1. 财务类指标: - 部门费用的实际与预算比较:如项目研究开发费用、课题费用、招聘费用、培训费用和新产品研发费用,均通过实际支出与计划预算的百分比来衡量,这反映了部门在成本控制上的效率。 - 经营利润指标:如承保利润、赔付率和理赔统计,这些涉及保险公司的核心盈利能力和风险管理水平。 - 人力成本和保费收益:如人力成本与计划的比例,以及标准保费、附加佣金、续期推动费用等与预算的对比,评估业务运营和盈利能力。 - 财务效率:包括管理费用、销售费用和投资回报率,如净投资收益率、销售目标达成率等,反映公司的财务健康状况和经营效率。 2. 客户类指标: - 客户满意度:通过包装水平客户满意度调研,了解产品和服务的质量和客户体验。 - 市场表现:通过市场销售月报和市场份额,衡量公司在市场中的竞争地位和销售业绩。 - 服务指标:如新契约标保完成度、续保率和出租率,体现客户服务质量和客户忠诚度。 - 品牌和市场知名度:通过问卷调查、公众媒体反馈和总公司级评价来评估品牌影响力和市场认知度。 BSC绩效考核指标旨在确保企业的战略目标与财务和非财务目标的平衡,通过量化这些关键指标,帮助管理层做出决策,优化资源配置,并驱动组织的整体业绩提升。同时,这份指标汇总文档强调了财务稳健性和客户满意度的重要性,体现了现代企业对多维度绩效管理的重视。
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

【进阶】Flask中的会话与用户管理

![python网络编程合集](https://media.geeksforgeeks.org/wp-content/uploads/20201021201514/pythonrequests.PNG) # 2.1 用户注册和登录 ### 2.1.1 用户注册表单的设计和验证 用户注册表单是用户创建帐户的第一步,因此至关重要。它应该简单易用,同时收集必要的用户信息。 * **字段设计:**表单应包含必要的字段,如用户名、电子邮件和密码。 * **验证:**表单应验证字段的格式和有效性,例如电子邮件地址的格式和密码的强度。 * **错误处理:**表单应优雅地处理验证错误,并提供清晰的错误消
recommend-type

卷积神经网络实现手势识别程序

卷积神经网络(Convolutional Neural Network, CNN)在手势识别中是一种非常有效的机器学习模型。CNN特别适用于处理图像数据,因为它能够自动提取和学习局部特征,这对于像手势这样的空间模式识别非常重要。以下是使用CNN实现手势识别的基本步骤: 1. **输入数据准备**:首先,你需要收集或获取一组带有标签的手势图像,作为训练和测试数据集。 2. **数据预处理**:对图像进行标准化、裁剪、大小调整等操作,以便于网络输入。 3. **卷积层(Convolutional Layer)**:这是CNN的核心部分,通过一系列可学习的滤波器(卷积核)对输入图像进行卷积,以
recommend-type

BSC资料.pdf

"BSC资料.pdf" 战略地图是一种战略管理工具,它帮助企业将战略目标可视化,确保所有部门和员工的工作都与公司的整体战略方向保持一致。战略地图的核心内容包括四个相互关联的视角:财务、客户、内部流程和学习与成长。 1. **财务视角**:这是战略地图的最终目标,通常表现为股东价值的提升。例如,股东期望五年后的销售收入达到五亿元,而目前只有一亿元,那么四亿元的差距就是企业的总体目标。 2. **客户视角**:为了实现财务目标,需要明确客户价值主张。企业可以通过提供最低总成本、产品创新、全面解决方案或系统锁定等方式吸引和保留客户,以实现销售额的增长。 3. **内部流程视角**:确定关键流程以支持客户价值主张和财务目标的实现。主要流程可能包括运营管理、客户管理、创新和社会责任等,每个流程都需要有明确的短期、中期和长期目标。 4. **学习与成长视角**:评估和提升企业的人力资本、信息资本和组织资本,确保这些无形资产能够支持内部流程的优化和战略目标的达成。 绘制战略地图的六个步骤: 1. **确定股东价值差距**:识别与股东期望之间的差距。 2. **调整客户价值主张**:分析客户并调整策略以满足他们的需求。 3. **设定价值提升时间表**:规划各阶段的目标以逐步缩小差距。 4. **确定战略主题**:识别关键内部流程并设定目标。 5. **提升战略准备度**:评估并提升无形资产的战略准备度。 6. **制定行动方案**:根据战略地图制定具体行动计划,分配资源和预算。 战略地图的有效性主要取决于两个要素: 1. **KPI的数量及分布比例**:一个有效的战略地图通常包含20个左右的指标,且在四个视角之间有均衡的分布,如财务20%,客户20%,内部流程40%。 2. **KPI的性质比例**:指标应涵盖财务、客户、内部流程和学习与成长等各个方面,以全面反映组织的绩效。 战略地图不仅帮助管理层清晰传达战略意图,也使员工能更好地理解自己的工作如何对公司整体目标产生贡献,从而提高执行力和组织协同性。
recommend-type

"互动学习:行动中的多样性与论文攻读经历"

多样性她- 事实上SCI NCES你的时间表ECOLEDO C Tora SC和NCESPOUR l’Ingén学习互动,互动学习以行动为中心的强化学习学会互动,互动学习,以行动为中心的强化学习计算机科学博士论文于2021年9月28日在Villeneuve d'Asq公开支持马修·瑟林评审团主席法布里斯·勒菲弗尔阿维尼翁大学教授论文指导奥利维尔·皮耶昆谷歌研究教授:智囊团论文联合主任菲利普·普雷教授,大学。里尔/CRISTAL/因里亚报告员奥利维耶·西格德索邦大学报告员卢多维奇·德诺耶教授,Facebook /索邦大学审查员越南圣迈IMT Atlantic高级讲师邀请弗洛里安·斯特鲁布博士,Deepmind对于那些及时看到自己错误的人...3谢谢你首先,我要感谢我的两位博士生导师Olivier和Philippe。奥利维尔,"站在巨人的肩膀上"这句话对你来说完全有意义了。从科学上讲,你知道在这篇论文的(许多)错误中,你是我可以依
recommend-type

【进阶】Flask中的请求处理

![【进阶】Flask中的请求处理](https://img-blog.csdnimg.cn/20200422085130952.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3pqMTEzMTE5MDQyNQ==,size_16,color_FFFFFF,t_70) # 1. Flask请求处理概述** Flask是一个轻量级的Web框架,它提供了一个简洁且灵活的接口来处理HTTP请求。在Flask中,请求处理是一个核心概念,它允许
recommend-type

transformer模型对话

Transformer模型是一种基于自注意力机制的深度学习架构,最初由Google团队在2017年的论文《Attention is All You Need》中提出,主要用于自然语言处理任务,如机器翻译和文本生成。Transformer完全摒弃了传统的循环神经网络(RNN)和卷积神经网络(CNN),转而采用全连接的方式处理序列数据,这使得它能够并行计算,极大地提高了训练速度。 在对话系统中,Transformer模型通过编码器-解码器结构工作。编码器将输入序列转化为固定长度的上下文向量,而解码器则根据这些向量逐步生成响应,每一步都通过自注意力机制关注到输入序列的所有部分,这使得模型能够捕捉到
recommend-type

BSC绩效考核指标汇总 (3).pdf

BSC(Balanced Scorecard,平衡计分卡)是一种企业绩效管理系统,它将公司的战略目标分解为四个维度:财务、客户、内部流程和学习与成长。在这个文档中,我们看到的是针对特定行业(可能是保险或保险经纪)的BSC绩效考核指标汇总,专注于财务类和非财务类的关键绩效指标(KPIs)。 财务类指标: 1. 部门费用预算达成率:衡量实际支出与计划费用之间的对比,通过公式 (实际部门费用/计划费用)*100% 来计算,数据来源于部门的预算和实际支出记录。 2. 项目研究开发费用预算达成率:同样用于评估研发项目的资金管理,公式为 (实际项目研究开发费用/计划费用)*100%。 3. 课题费用预算达成率、招聘费用预算达成率、培训费用预算达成率 和 新产品研究开发费用预算达成率:这些都是人力资源相关开支的预算执行情况,涉及到费用的实际花费与计划金额的比例。 4. 承保利润:衡量保险公司盈利能力的重要指标,包括赔付率和寿险各险种的死差损益(实际死亡率与预期死亡率的差异)。 5. 赔付率:反映保险公司的赔付情况,是业务健康度的一个关键指标。 6. 内嵌价值的增加:代表了保单的价值增长,反映了公司长期盈利能力。 7. 人力成本总额控制率:通过比较实际人力成本与计划成本来评估人力成本的有效管理。 8. 标准保费达成率:衡量公司的销售业绩,即实际收取保费与目标保费的比率。 9. 其他费用比率,如附加佣金、续期推动费用、业务推动费用等,用来评估营销费用的效率。 非财务类指标: 1. 销售目标达成率:衡量销售团队完成预定目标的程度,通过实际销售额与计划销售额的比率计算。 2. 理赔率:体现客户服务质量和效率,涉及保险公司处理理赔请求的速度和成功率。 3. 产品/服务销售收入达成率:衡量产品或服务的实际销售效果,反映市场响应和客户满意度。 这些指标集合在一起,提供了全面的视角来评估公司的经营效率、财务表现以及战略执行情况。通过定期跟踪和分析这些数据,企业可以持续优化策略,提升业绩,确保与整体战略目标的一致性。每个指标的数据来源通常来自于相关部门的预算和实际操作记录,确保信息的准确性。
recommend-type

关系数据表示学习

关系数据卢多维奇·多斯桑托斯引用此版本:卢多维奇·多斯桑托斯。关系数据的表示学习机器学习[cs.LG]。皮埃尔和玛丽·居里大学-巴黎第六大学,2017年。英语。NNT:2017PA066480。电话:01803188HAL ID:电话:01803188https://theses.hal.science/tel-01803188提交日期:2018年HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaireUNIVERSITY PIERRE和 MARIE CURIE计算机科学、电信和电子学博士学院(巴黎)巴黎6号计算机科学实验室D八角形T HESIS关系数据表示学习作者:Ludovic DOS SAntos主管:Patrick GALLINARI联合主管:本杰明·P·伊沃瓦斯基为满足计算机科学博士学位的要求而提交的论文评审团成员:先生蒂埃里·A·退休记者先生尤尼斯·B·恩