Отчёт
по лабораторной работе №2
по ООП
Проверил: Митителу В.
Кишинёв 2019
Конструктор – функция инициализации объектов класса
Цели работы:
изучение основ определения и использования конструкторов;
изучение основ определения и использования деструкторов;
изучение типов конструкторов;
Задание :
Исходный код :
//Пункт А
#include<string.h>
#include<iostream>
#include<algorithm>
using namespace std;
class myString{
char *p;
int n;
public:
myString()
{
p=new char[4];
strcpy(p,"YES");
n=3;
// cout<<"ctor1"<<endl;
}
myString(char *s,int n=0)
{
n=strlen(s);
p=new char[n+1];
strcpy(p,s);
// cout<<"ctor2"<<endl;
}
myString(const char *s,int n=0)
{
n=strlen(s);
p=new char[n+1];
strcpy(p,s);
// cout<<"ctor3"<<endl;
}
myString(const myString& a)
{
n=strlen(a.p);
p=new char[n+1];
strcpy(p,a.p);
// cout<<"ctor4"<<endl;
}
const myString & operator=(const myString & a)
{
if(this == &a)
return a;
delete [] p;
n=strlen(a.p);
p=new char[n+1];
strcpy(p,a.p);
// cout<<"op="<<endl;
return *this;
}
bool operator>(const myString &a)
{
return strcmp(p,a.p)>0;
}
bool operator<(const myString &a)
{
return strcmp(a.p,p)>0;
}
bool operator==(const myString &a)
{
return strcmp(p,a.p)==0;
}
bool strst(const myString &a)
{
return strstr(p,a.p)!=0;
}
int amount(const myString &a)
{
return strlen(p);
}
void printAll(const myString &a)
{
cout<<p<<endl;
}
~myString()
{
// cout<<"destr"<<p<<endl;
delete [] p;
}
};
int main()
{
myString x("bsafasdfasdf"),y("dsfgd");
x.printAll(x);
y.printAll(y);
if(x.strst(y))
cout<<"X consists Y"<<endl;
else
cout<<"X doesn't consist Y"<<endl;
if(x>y)
cout<<"x>y"<<endl;
else if(x<y)
cout<<"x<y"<<endl;
else if(x==y)
cout<<"x=y"<<endl;
int main()
{
int **m, **s, **d;
cout<<"Enter elements of the first matrix"<<endl;
Matrix a(2,2);
cout<<"Enter elements of the second matrix"<<endl;
Matrix b(2,2);
cout<<"The first matrix A"<<endl;
a.printAll();
cout<<endl;
cout<<"The second matrix B"<<endl;
b.printAll();
cout<<endl;
m = multiply2matrix(a,b);
cout<<"The multiply matrix"<<endl;
for(int i=0 ; i<a.getRows(); i++)
{
for(int j=0 ; j<b.getCols(); j++)
cout<<m[i][j]<<" ";
putchar('\n');
}
cout<<endl;
cout<<"The addition matrix"<<endl;
if(sum(a,b))
{
s = sum(a,b);
for(int i=0 ; i<a.getRows(); i++)
{
for(int j=0 ; j<b.getCols(); j++)
cout<<s[i][j]<<" ";
putchar('\n');
}
}
// a.printAll();
cout<<endl;
cout<<"The difference matrix"<<endl;
if(diff(a,b))
{
d = diff(a,b);
for(int i=0 ; i<a.getRows(); i++)
{
for(int j=0 ; j<b.getCols(); j++)
cout<<d[i][j]<<" ";
putchar('\n');
}
}
// b.printAll();
cout<<endl;
cout<<"The first matrix after multiplication by a number"<<endl;
a.multiNumber(3);
a.printAll();
return 0;
}
Полученные результаты :
Пункт А
Пункт Б