Yurttas/PL/OOL/Cplusplus/F/03/01/00/d 00.cpp

Revision as of 21:51, 6 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="cpp" line start="1" enclose="div">/* Copyright(C) 1998 All Rights Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc.. Perm...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 1/*
 2   Copyright(C) 1998
 3   All Rights Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc..
 4
 5   Permission to use, copy, modify, and distribute this
 6   software and its documentation for EDUCATIONAL purposes
 7   and without fee is hereby granted provided that this
 8   copyright notice appears in all copies.
 9
10   date   : January 1, 1998.
11   author : Salih Yurttas.
12
13   d_00.cpp
14*/
15
16
17#include <iostream>
18
19using namespace std;
20
21#include "D.h"
22
23int main(int argc, char* argv[]) {
24
25  D d1;
26
27  cout << "initial values after default construction-D() /" << endl;
28
29  cout << d1.i0 << endl;
30  cout << d1.get_i1() << endl;
31  cout << d1.get_i2() << endl;
32
33  cout << endl;
34
35  D d2(2);
36
37  cout << "initial values after construction-D(int) /" << endl;
38
39  cout << d2.i0 << endl;
40  cout << d2.get_i1() << endl;
41  cout << d2.get_i2() << endl;
42
43  cout << endl;
44
45  d2.set_i1_i2(4);
46
47  cout << "updated values - ";
48  cout << "accessors get_i1(), get_i2() and mutator set_i1_i2(int) /";
49  cout << endl;
50
51  cout << d2 << endl;
52
53  D d3(d2);
54
55  cout << "initial values after construction-D(D&) /" << endl;
56
57  cout << d3 << endl;
58
59  d3.set_i1_i2(1);
60
61  cout << "clone d2 after clone d3 updated /" << endl;
62
63  cout << d2 << endl;
64
65  cout << "clone d3 after clone d3 updated /" << endl;
66
67  cout << d3 << endl;
68
69}