搜索资源列表
Circleb
- 定义一个圆类(Circle),属性为半径(radius),要求用友元函数来求圆的面积和周长。-definition of a category yen (Circle), the properties of the radius (radius). UF yuan function request to seek a round of the area and perimeter.
c++sort
- 设计一个类Sample,它有两个私有成员A[]和n(A中元素个数),将对A[]中数据进行各种排序的函数放入到一个友元类process中。 -Sample Design of a kind, it has two private members [] A and n (A number of elements), A. [] will be the data for various sort of function Add Friends yuan to a process which ca
Huge
- 编写一个巨型整数类HugeInt,可以用默认值0或长整型数或字符串进行对象的初始化(构造) 然后用成员、友元或普通函数等重载相应的运算符实现下述功能(必须优化算法、同时进行异常处理):“巨型整数”OP“巨型整数/长整型数/字符串” [其中OP为:加+、减-、乘*、整除/、求余%、复合运算(+=、-=、*=、/=、%=)和关系运算(>、>=、<、<=、!=和==)] “长整型数/字符串”OP “巨型整数”(其中OP为:+、-、*、/、%和关系运算),求负(-巨型整数),巨型
autoseller
- 这是本人的课程设计,自动售货机,内容有文件的操作,向量与迭代器的使用,友元函数的使用
youyuan
- 设计一个直线类Line,其中包含3个数据成员,用于描述直线方程的3个系数,并声明一个友元函数,用于计算两条直线的交点,和显示函数,编程测试。 两条直线:a1x+b1y+c1=0和a2x+b2y+c2=0的交点坐标为: (b1c2-b2c1)/(a1b2-a2b1),(c1a2-c2a1)/(a1b2-a2b1) 为显示交点,还要设计一个描述点的类。
circle
- 定义一个圆类,计算圆的面积和周长。 要求:分别用成员函数和友元函数来求圆的面积和周长。 -Class defines a circle, calculate area and circumference of a circle. Requirements: member function respectively, and a friend function to find area and circumference of a circle.
cworkshop
- 《C++程序设计教程》—源代码 面向对象的软件工程 VC上机指导 面向对象程序设计教案 友元函数入门教程 课件若干-stuff about VC.
linwk
- 静态数据成员、静态函数、友元函数的应用。-Static data members, static function, friend function of the application.
Thepreparationofcomplex
- 编写复数类scomplex,用友元函数重载,实现浮点数和复数的加法。-The preparation of complex class scomplex, UF element function overloading to achieve floating-point numbers and complex numbers addition.
main2
- 3、 友元 编写C++程序完成以下功能: (1) 定义一个Boat和Car两个类,他们都具有私用属性——重量; (2) 编写一个函数,计算两者的重量和。 double TotalWeight(Boat& b, Car& c) -3, friend write C++ program to accomplish the following functions: (1) defines two classes of a Boat and Car, they have priva
youyuan
- 友元函数:定义Boat和Car两个类,两者都有weight属性,定义两者的一个友员函数totalweight(),计算两个类的对象的重量和。-Friend function: to define two classes of Boat and Car, both the weight attribute, defined both a friendly member function totalweight the (), calculate the two classes of objects
test-the-Member-function
- 在一般的程序开发过程中,类或者类库往往是以动态库的形式向用户发布的,所以在程序发布之前必须对程序中的所有函数进行集成测试 1 )测试头文件给出的Utility类中所有的成员函数 2 )用四种方式完成1,继承 2,友元 3,访问声明 4,using声明 -Classes or class libraries in the program development process, often based on a dynamic library released to the use
shiyan
- 实现客户机(CLIENT)类。定义字符型静态数据成员ServerName,保存其服务器名称;整型静态数据成员ClientNum,记录已定义的客户数量;定义静态函数ChangeServerName()改变服务器名称。在头文件client.h中定义类,在文件client.cpp中实现,在文件test.cpp 中测试这个类,观察相应的成员变量取值的变化情况。(需要给出main函数代码和运行结果) 完善Body类,将检测胖瘦的标准定义为静态数据成员并设计相应的静态成员函数。(最好给出main函数
jtyyyy
- 静态成员与友元学习友元函数的定义和原理。 • 学习静态数据成员和静态成员函数的使用。 • 学习静态成员代替全局变量实现对象间的共享。 -Learning friend function definitions and principles. • Learn to use static data members and static member functions. • Learning static members instead
fist
- 定义一个人民币类 RMB,包含私有数据成员元、角、分,请用友元函数重载运算符“+”和“++”,以对类对象进行运算。-RMB define a class RMB contains private data members of the yuan, angle, sub, the friend function overloading operator " +" ++ to the class object computing.
desp
- 定义复数类,使用友元函数,完成复数的加法,减法,乘法运算,以及复数的输出-Define plural categories, using friend functions, complete the complex addition, subtraction, multiplication, and plural output
point
- 设计并测试点类Point,其数据成员是直角坐标系的点坐标,友元函数distance用来计算两点间的距离。-Design and test Point kind of Point, the Point coordinate data member is rectangular coordinate system, short of the friend function is used to calculate the distance between two points.
3-1-13055604
- 1. 定义一个圆类,计算圆的面积和周长。 要求:分别用成员函数和友元函数来求圆的面积和周长。