-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoop.html
616 lines (561 loc) · 21 KB
/
oop.html
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Object Oriented Programming (OOP) — Ring 1.0 documentation</title>
<link rel="stylesheet" href="_static/classic.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '1.0',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<link rel="top" title="Ring 1.0 documentation" href="index.html" />
<link rel="next" title="Declarative Programming using Nested Structures" href="declarative.html" />
<link rel="prev" title="Security and Internet Functions" href="secfunc.html" />
</head>
<body role="document">
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="declarative.html" title="Declarative Programming using Nested Structures"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="secfunc.html" title="Security and Internet Functions"
accesskey="P">previous</a> |</li>
<li class="nav-item nav-item-0"><a href="index.html">Ring 1.0 documentation</a> »</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<div class="section" id="object-oriented-programming-oop">
<h1>Object Oriented Programming (OOP)<a class="headerlink" href="#object-oriented-programming-oop" title="Permalink to this headline">¶</a></h1>
<p>In this chapter we are going to learn how to use the Object-Oriented programming paradigm
inside the Ring programming language.</p>
<p>We will learn about</p>
<ul class="simple">
<li>Classes and Objects</li>
<li>Access Objects Using Braces</li>
<li>Composition</li>
<li>Setter and Getter</li>
<li>Private Attributes and Methods</li>
<li>Operator Overloading</li>
<li>Inheritance</li>
<li>Dynamic Attributes</li>
<li>Packages</li>
</ul>
<div class="section" id="classes-and-objects">
<span id="index-0"></span><h2>Classes and Objects<a class="headerlink" href="#classes-and-objects" title="Permalink to this headline">¶</a></h2>
<p>We can define new classes using the next syntax</p>
<p>Syntax:</p>
<div class="highlight-none"><div class="highlight"><pre>Class <Class Name> [From <Parent Class Name>]
[Attributes]
[Methods]
[Private
[Attributes]
[Methods]
]
</pre></div>
</div>
<p>And we can create objects using the next syntax</p>
<p>Syntax:</p>
<div class="highlight-none"><div class="highlight"><pre>New <Object Name> [ (init method parameters) ] |
[ { access object data and methods } ] ---> Object
</pre></div>
</div>
<p>Example:</p>
<div class="highlight-none"><div class="highlight"><pre>New point { x=10 y=20 z=30 print() }
Class Point x y z func print see x + nl + y + nl + z + nl
</pre></div>
</div>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">We can use { } to access object data and methods.</p>
</div>
<div class="admonition tip">
<p class="first admonition-title">Tip</p>
<p class="last">we can declare the class attributes directly after the class name.</p>
</div>
<p>Output:</p>
<div class="highlight-none"><div class="highlight"><pre>10
20
30
</pre></div>
</div>
<p>We can rewrite the same program in another style</p>
<div class="highlight-none"><div class="highlight"><pre>New point # create new object using the point class
{ # access the new object attributes and methods
x = 10 # set the x attribute to 10
y = 20 # set the y attribute to 20
z = 30 # set the z attribute to 30
print() # call the print method
} # end of object access
Class Point # define the Point class
x y z # the class contains three attributes x, y & z
func print # define the print method
see x + nl + # print the x attribute
y + nl + # print the y attribute
z + nl # print the z attribute
</pre></div>
</div>
<p>Also we can write the same program in another way</p>
<div class="highlight-none"><div class="highlight"><pre>P1 = New Point
P1.x = 10
P1.y = 20
P1.z = 30
P1.Print()
Class Point x y z func print see x + nl + y + nl + z + nl
</pre></div>
</div>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">we can use the dot operator after the object name to access object members.</p>
</div>
<p>Also we can write the same program in another way</p>
<div class="highlight-none"><div class="highlight"><pre>new point { print() }
Class Point
x = 10 y = 20 z = 30
func print see x + nl + y + nl + z + nl
</pre></div>
</div>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">we can set the default values for the class attributes when we declare them.</p>
</div>
<p>Also we can write the same program in another way</p>
<div class="highlight-none"><div class="highlight"><pre>new point(10,20,30)
Class Point
x y z
func init p1,p2,p3 x=p1 y=p2 z=p3 print()
func print see x + nl + y + nl + z + nl
</pre></div>
</div>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">we can call the init method directly using () when we create new objects</p>
</div>
<p>Also we can write the same program in another way</p>
<div class="highlight-none"><div class="highlight"><pre>new point( [ :x = 10 , :y = 20 , :z = 30 ] )
Class Point x y z
func init aPara x = aPara[:x] y = aPara[:y] z = aPara[:z] print()
func print see x + nl + y + nl + z + nl
</pre></div>
</div>
<div class="admonition tip">
<p class="first admonition-title">Tip</p>
<p class="last">using Hash for passing method parameters enable us to create optional
parameters and change the order of parameters when adding them to the Hash.</p>
</div>
</div>
<div class="section" id="access-objects-using-braces">
<h2>Access Objects Using Braces<a class="headerlink" href="#access-objects-using-braces" title="Permalink to this headline">¶</a></h2>
<p>We can access the object at any time using braces { }</p>
<p>Inside the braces we can use the object attributes and methods directly</p>
<p>This can be done when we create the object using the New keyword or at any time using the next syntax</p>
<div class="highlight-none"><div class="highlight"><pre>ObjectName { access object data and methods }
</pre></div>
</div>
<p>Example:</p>
<div class="highlight-none"><div class="highlight"><pre>See "Creating the Object" + nl
o1 = new Point
See "Using the Object" + nl
o1 {
x=5
y=15
z=25
print()
}
Class Point x y z func print see x + nl + y + nl + z
</pre></div>
</div>
<p>We can use braces to access objects when we call functions or methods</p>
<p>Example:</p>
<div class="highlight-none"><div class="highlight"><pre>o1 = new Point
print( o1 { x=10 y=20 z=30 } )
func print object
see object.x + nl +
object.y + nl +
object.z
Class Point x y z
</pre></div>
</div>
<p>We can mix between using braces and the dot operator to access the object in the same expression.</p>
<p>Example:</p>
<div class="highlight-none"><div class="highlight"><pre>o1 = new Point
O1 { x=10 y=20 z=30 }.print()
Class Point x y z
func print see x + nl + y + nl + z
</pre></div>
</div>
</div>
<div class="section" id="composition">
<h2>Composition<a class="headerlink" href="#composition" title="Permalink to this headline">¶</a></h2>
<p>The object may contains other objects as attributes.</p>
<p>Using braces to access objects can be nested.</p>
<p>Example:</p>
<div class="highlight-none"><div class="highlight"><pre>R1 = New Rectangle
{
Name = "Rectangle 1"
P1
{
X = 10
Y = 20
}
P2
{
X = 200
Y = 300
}
Color = "Blue"
}
see "Name : " + R1.Name + nl +
"Color: " + R1.Color + nl +
"P1 : (" + R1.P1.X + "," + R1.P1.Y + ")" + nl +
"P2 : (" + R1.P2.X + "," + R1.P2.Y + ")"
Class Rectangle
name color
p1 = new Point
p2 = new Point
Class Point x y
</pre></div>
</div>
<p>Output:</p>
<div class="highlight-none"><div class="highlight"><pre>Name : Rectangle 1
Color: Blue
P1 : (10,20)
P2 : (200,300)
</pre></div>
</div>
</div>
<div class="section" id="setter-and-getter">
<h2>Setter and Getter<a class="headerlink" href="#setter-and-getter" title="Permalink to this headline">¶</a></h2>
<p>We can define methods to be used when we set and get object attributes.</p>
<p>Syntax:</p>
<div class="highlight-none"><div class="highlight"><pre>Class ClassName
AttributeName
...
Func SetAttributeName
...
Func GetAttributeName
...
</pre></div>
</div>
<p>Example:</p>
<div class="highlight-none"><div class="highlight"><pre>o1 = new person
o1.name = "Mahmoud" see o1.name + nl
o1 { name = "Ahmed" see name }
Class Person
name family = "Fayed"
func setname value
see "Message from SetName() Function!" + nl
name = value + " " + family
func getname
see "Message from GetName() Function!" + nl
return "Mr. " + name
</pre></div>
</div>
<p>Output:</p>
<div class="highlight-none"><div class="highlight"><pre>Message from SetName() Function!
Message from GetName() Function!
Mr. Mahmoud Fayed
Message from SetName() Function!
Message from GetName() Function!
Mr. Ahmed Fayed
</pre></div>
</div>
</div>
<div class="section" id="private-attributes-and-methods">
<h2>Private Attributes and Methods<a class="headerlink" href="#private-attributes-and-methods" title="Permalink to this headline">¶</a></h2>
<p>We can define private attributes and methods after the keyword private inside the class body</p>
<p>Example:</p>
<div class="highlight-none"><div class="highlight"><pre>o1 = new person {
name = "Test"
age = 20
print()
o1.printsalary()
}
try
see o1.salary
catch
see cCatchError + nl
done
try
o1.increasesalary(1000)
catch
see cCatchError + nl
done
Class Person
name age
func print
see "Name : " + name + nl +
"Age : " + age + nl
func printsalary
see "Salary : " + salary + nl
private
salary = 15000
func increasesalary x
salary += x
</pre></div>
</div>
<p>Output:</p>
<div class="highlight-none"><div class="highlight"><pre>Name : Test
Age : 20
Salary : 15000
Error (R27) : Using private attribute from outside the class : salary
Error (R26) : Calling private method from outside the class : increasesalary
</pre></div>
</div>
</div>
<div class="section" id="operator-overloading">
<h2>Operator Overloading<a class="headerlink" href="#operator-overloading" title="Permalink to this headline">¶</a></h2>
<p>We can add the operator method to our class to enable using operators with the class objects.</p>
<p>Syntax:</p>
<div class="highlight-none"><div class="highlight"><pre>Class ClassName
...
Func operator cOperator,Para
...
</pre></div>
</div>
<p>The function operator takes two paramters, the first represent the operator
and the second represent the second parameter after the operator.</p>
<p>Example:</p>
<div class="highlight-none"><div class="highlight"><pre>o1 = new point { x = 10 y = 10 print("P1 : ") }
o2 = new point { x = 20 y = 40 print("P2 : ") }
o3 = o1 + o2
o3.print("P1+P2 : ")
class point x y
func operator cOperator,Para
result = new point
switch cOperator
on "+"
result.x = x + Para.x
result.y = y + Para.y
on "-"
result.x = x - Para.x
result.y = y - Para.y
off
return result
func print cPoint
see cPoint + "X : " + x + " Y : " + y + nl
</pre></div>
</div>
<p>Output:</p>
<div class="highlight-none"><div class="highlight"><pre>P1 : X : 10 Y : 10
P2 : X : 20 Y : 40
P1+P2 : X : 30 Y : 50
</pre></div>
</div>
</div>
<div class="section" id="inheritance">
<h2>Inheritance<a class="headerlink" href="#inheritance" title="Permalink to this headline">¶</a></h2>
<p>We can create class from another class in the class definition using the keyword from.</p>
<p>Syntax:</p>
<div class="highlight-none"><div class="highlight"><pre>Class <Class Name> [From <Parent Class Name>]
</pre></div>
</div>
<p>We can call a method in the parent class from the child class using the super object.</p>
<p>Syntax:</p>
<div class="highlight-none"><div class="highlight"><pre>func methodname
...
super.methodname()
...
</pre></div>
</div>
<p>Example:</p>
<div class="highlight-none"><div class="highlight"><pre>Func main
e1 = new Employee {
Name = "test"
age = 20
job = "programmer"
salary = 20000000
print()
}
Class Human
Name Age
func print
see "Name : " + name + nl + "Age : " + age + nl
Class Employee from Human
Job Salary
func print
super.print()
see "Job : " + job + nl + "Salary : " + salary + nl
</pre></div>
</div>
<p>Output:</p>
<div class="highlight-none"><div class="highlight"><pre>Name : test
Age : 20
Job : programmer
Salary : 20000000
</pre></div>
</div>
</div>
<div class="section" id="dynamic-attributes">
<h2>Dynamic Attributes<a class="headerlink" href="#dynamic-attributes" title="Permalink to this headline">¶</a></h2>
<p>We can write instructions after the class name to be executed when we create new objects</p>
<p>Example:</p>
<div class="highlight-none"><div class="highlight"><pre>o1 = new dynamicClass
see o1.var5 + nl # output 5
Class DynamicClass
for x = 1 to 10
cStr = "var" + x + " = " + x
eval(cStr)
next
</pre></div>
</div>
<div class="admonition tip">
<p class="first admonition-title">Tip</p>
<p class="last">in the previous example var1, var2, ..., var10 will be defined as attributes.</p>
</div>
<div class="admonition tip">
<p class="first admonition-title">Tip</p>
<p class="last">The problem with the previous example is that x and cStr will be defined as attributes too!</p>
</div>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">we can write class definitions inside a string then
using eval() we can execute the string to define the classes</p>
</div>
</div>
<div class="section" id="packages">
<h2>Packages<a class="headerlink" href="#packages" title="Permalink to this headline">¶</a></h2>
<p>We can create a package (a group of classes under a common name) using the next syntax</p>
<div class="highlight-none"><div class="highlight"><pre>package PackageName
Class Class1
...
Class Class2
...
Class Class3
...
...
</pre></div>
</div>
<p>Example</p>
<div class="highlight-none"><div class="highlight"><pre>o1 = new System.output.console
o1.print("Hello World")
Package System.Output
Class Console
Func Print cText
see cText + nl
</pre></div>
</div>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">we can use the dot operator as part of the package name</p>
</div>
<p>Instead of typing the long name PackageName.ClassName we can use the import command</p>
<p>When we import a package, we can use any class inside this package directly.</p>
<p>Example</p>
<div class="highlight-none"><div class="highlight"><pre>import system.output
o1 = new console {
print("Hello World")
}
Package System.Output
Class Console
Func Print cText
see cText + nl
</pre></div>
</div>
</div>
<div class="section" id="printing-objects">
<h2>Printing Objects<a class="headerlink" href="#printing-objects" title="Permalink to this headline">¶</a></h2>
<p>We can print the object state (attributes and values) using the see command.</p>
<p>Example:</p>
<div class="highlight-none"><div class="highlight"><pre>see new point { x=10 y=20 z=30 }
class point x y z
</pre></div>
</div>
<p>Output:</p>
<div class="highlight-none"><div class="highlight"><pre>x: 10.000000
y: 20.000000
z: 30.000000
</pre></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
<div class="sphinxsidebarwrapper">
<h3><a href="index.html">Table Of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">Object Oriented Programming (OOP)</a><ul>
<li><a class="reference internal" href="#classes-and-objects">Classes and Objects</a></li>
<li><a class="reference internal" href="#access-objects-using-braces">Access Objects Using Braces</a></li>
<li><a class="reference internal" href="#composition">Composition</a></li>
<li><a class="reference internal" href="#setter-and-getter">Setter and Getter</a></li>
<li><a class="reference internal" href="#private-attributes-and-methods">Private Attributes and Methods</a></li>
<li><a class="reference internal" href="#operator-overloading">Operator Overloading</a></li>
<li><a class="reference internal" href="#inheritance">Inheritance</a></li>
<li><a class="reference internal" href="#dynamic-attributes">Dynamic Attributes</a></li>
<li><a class="reference internal" href="#packages">Packages</a></li>
<li><a class="reference internal" href="#printing-objects">Printing Objects</a></li>
</ul>
</li>
</ul>
<h4>Previous topic</h4>
<p class="topless"><a href="secfunc.html"
title="previous chapter">Security and Internet Functions</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="declarative.html"
title="next chapter">Declarative Programming using Nested Structures</a></p>
<div role="note" aria-label="source link">
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="_sources/oop.txt"
rel="nofollow">Show Source</a></li>
</ul>
</div>
<div id="searchbox" style="display: none" role="search">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
<input type="text" name="q" />
<input type="submit" value="Go" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
<p class="searchtip" style="font-size: 90%">
Enter search terms or a module, class or function name.
</p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="declarative.html" title="Declarative Programming using Nested Structures"
>next</a> |</li>
<li class="right" >
<a href="secfunc.html" title="Security and Internet Functions"
>previous</a> |</li>
<li class="nav-item nav-item-0"><a href="index.html">Ring 1.0 documentation</a> »</li>
</ul>
</div>
<div class="footer" role="contentinfo">
© Copyright 2016, Mahmoud Samir Fayed.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.3.1.
</div>
</body>
</html>