<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-10401728</id><updated>2011-04-21T21:21:32.913-07:00</updated><title type='text'>Java Thoughts</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://cis327saul.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10401728/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://cis327saul.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>cis327saul</name><uri>http://www.blogger.com/profile/05306760040831119041</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>5</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-10401728.post-110704670045260780</id><published>2005-01-29T16:30:00.000-08:00</published><updated>2005-01-29T16:58:20.453-08:00</updated><title type='text'>Polymorphism</title><content type='html'>Now there's a funny word, don't ya think.  It's actually a pretty powerful characteristic of object-oriented programming.  This referst to the ability to define different "specific" behavior for "child" classes that inherit the same "general" behavior from the same parent class.&lt;br /&gt;&lt;br /&gt;Let's look at an example.  That always makes it easier, doesn't it?  Say for example, you define an abstract class of "GraphicalObject" with an action of "Draw."  Child classes could then be defined as a "Sphere" and "Pyramid."  When asking either of these two child classes to draw, we would get two different results even though they both inherit the same action from the parent object.  The polymorphic characteristic allows the general (or parent) class to define an action that will be implemented differently by each specific (or child) class.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/10401728-110704670045260780?l=cis327saul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://cis327saul.blogspot.com/feeds/110704670045260780/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=10401728&amp;postID=110704670045260780' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10401728/posts/default/110704670045260780'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10401728/posts/default/110704670045260780'/><link rel='alternate' type='text/html' href='http://cis327saul.blogspot.com/2005/01/polymorphism.html' title='Polymorphism'/><author><name>cis327saul</name><uri>http://www.blogger.com/profile/05306760040831119041</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10401728.post-110704496572748138</id><published>2005-01-29T16:03:00.000-08:00</published><updated>2005-01-29T16:29:25.726-08:00</updated><title type='text'>Inheritance</title><content type='html'>You might first think this has something to do with your rich uncle's hidden treasures, but that is not the case here.  In OOA&amp;D, we can more closely relate to the occurance of "having your mother's eyes."&lt;br /&gt;&lt;br /&gt;Actually, we can build upon the prior term, abstraction, and say that once we have defined an class of objects using abstract thinking, we have identified certain attributes and actions that are common to all occurances of that abstract class.  We can then describe classes that are derived from that "super-class" or "parent" class.  So these "child" classes actually absorb or "inherit" the characteristics of the parent.  To use my car example, a car can either be a coupe or a sedan.  So each would inherit the characteristics, wheels and engine, from it's parent class and for a coupe, it would have two doors, while a sedan has 4 doors.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/10401728-110704496572748138?l=cis327saul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://cis327saul.blogspot.com/feeds/110704496572748138/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=10401728&amp;postID=110704496572748138' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10401728/posts/default/110704496572748138'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10401728/posts/default/110704496572748138'/><link rel='alternate' type='text/html' href='http://cis327saul.blogspot.com/2005/01/inheritance.html' title='Inheritance'/><author><name>cis327saul</name><uri>http://www.blogger.com/profile/05306760040831119041</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10401728.post-110670865243509318</id><published>2005-01-25T18:52:00.000-08:00</published><updated>2005-01-25T19:04:12.436-08:00</updated><title type='text'>Abstraction</title><content type='html'>This term refers to the idea of thinking on very general definitions.  In other words, thinking of something without needing to apply the form of that something to a specific instance of the something. &lt;br /&gt;&lt;br /&gt;OK, that was a pretty absract definition.  How about an example.  Think of a car and what that means, not a specific make or model of a car, but just a car.  It has wheels, and engine, and so forth.  You can picture that without actually needing to reference an actual instance of a car such as a Nissan 350Z (my dream car :-)  )!&lt;br /&gt;&lt;br /&gt;Make sense?&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/10401728-110670865243509318?l=cis327saul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://cis327saul.blogspot.com/feeds/110670865243509318/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=10401728&amp;postID=110670865243509318' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10401728/posts/default/110670865243509318'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10401728/posts/default/110670865243509318'/><link rel='alternate' type='text/html' href='http://cis327saul.blogspot.com/2005/01/abstraction.html' title='Abstraction'/><author><name>cis327saul</name><uri>http://www.blogger.com/profile/05306760040831119041</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10401728.post-110670794869022155</id><published>2005-01-25T18:49:00.000-08:00</published><updated>2005-01-25T18:52:28.690-08:00</updated><title type='text'>Terminology</title><content type='html'>OOA&amp;D (object oriented analysis and design - for those who were wondering) has many new terms to learn.  I'll start with abstraction (since that's what our prof has listed for us to define) and give my definition of some of these terms.  Soooo...  here goes...&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/10401728-110670794869022155?l=cis327saul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://cis327saul.blogspot.com/feeds/110670794869022155/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=10401728&amp;postID=110670794869022155' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10401728/posts/default/110670794869022155'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10401728/posts/default/110670794869022155'/><link rel='alternate' type='text/html' href='http://cis327saul.blogspot.com/2005/01/terminology.html' title='Terminology'/><author><name>cis327saul</name><uri>http://www.blogger.com/profile/05306760040831119041</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10401728.post-110670320607636952</id><published>2005-01-25T17:31:00.000-08:00</published><updated>2005-01-25T17:33:26.076-08:00</updated><title type='text'>Welcome message</title><content type='html'>I hope I don't bore you too much with these comments, but here is where I will write whatever crosses my mind relating to the Java course I am currently taking.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/10401728-110670320607636952?l=cis327saul.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://cis327saul.blogspot.com/feeds/110670320607636952/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=10401728&amp;postID=110670320607636952' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10401728/posts/default/110670320607636952'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10401728/posts/default/110670320607636952'/><link rel='alternate' type='text/html' href='http://cis327saul.blogspot.com/2005/01/welcome-message.html' title='Welcome message'/><author><name>cis327saul</name><uri>http://www.blogger.com/profile/05306760040831119041</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry></feed>
