-
Notifications
You must be signed in to change notification settings - Fork 0
/
p4.cpp
35 lines (30 loc) · 867 Bytes
/
p4.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//
// Created by rudri on 10/11/2020.
//
#include <iostream>
#include "global.h"
#include "p4.h"
using namespace std;
void question_4_1(){
#ifdef ENABLE_TEST
// puntero inteligente no inicializado
smart_ptr<int> sp1;
sp1 = make_smart_ptr<int>(10);
cout << *sp1 << endl; // Imprimiendo el contenido
// puntero inteligente inicializado
smart_ptr<string> sp2 = make_smart_ptr<string>("Hola");
cout << *sp2 << endl; // Imprimiendo el contenido
#endif
}
void question_4_2(){
#ifdef ENABLE_TEST
// puntero inteligente no inicializado
smart_ptr<point> sp1;
sp1 = make_smart_ptr<point>(20, 30);
cout << *sp1 << endl; // Imprimiendo el contenido
// puntero inteligente inicializado
smart_ptr<point> sp2 = make_smart_ptr<point>(10, 40);
cout << sp2->get_x() << endl;
cout << sp2->get_y() << endl;
#endif
}