2cb4
| |||||||||||||
| |||||||||||||
|
People - base class for use in exercise
Extending Classes and More example from a Well House Consultants training course
More on Extending Classes and More [link] Source code: People.java Module: J710
public class People { String name; int age; boolean male; People (String name,int age,boolean male) { this.name=name; this.age=age; this.male = male; } String getName() { return name; } String getSurname() { int where = name.lastIndexOf(" "); String Sur = name.substring(where+1); return Sur; } int getAge() { return age; } String getLevel() { return "loafer"; } boolean getMale() { return male; } void married(People partner) { if (! this.male) { name = name + "-" + partner.getSurname(); } else { partner.name = partner.name + "-" + this.getSurname(); } } } 20d9 Learn about this subject
Books covering this topic
Yes. We have over 700 books in our library. Books
covering Java and associated technologies are listed here and when you've selected a
relevant book we'll link you on to Amazon to order.
Other Examples
This example comes from our "Extending Classes and More" training module. You'll find a description of the topic and some
other closely related examples on the "Extending Classes and More" module index page.
Full description of the source code
The complete module that describes this example
is available for download under our Open Training Notes License from
our sister site http://www.training-notes.co.uk.
Other resources
• Our Solutions centre provides a number of longer technical articles.
• Our Opentalk forum archive provides a question and answer centre. • The Horse's mouth provides a daily tip or thought. • Further resources are available via the resources centre. • All of these resources can be searched through through our search engine • And there's a global index here. Web site author
Purpose of this website
This is a sample program, class demonstration or answer from a
training course. It's main purpose
is to provide an after-course service to customers who have attended our
public private or
on site courses, but the examples are made
generally available under conditions described below.
Conditions of use
Past attendees on our training courses are welcome to use individual
examples in the course of their programming, but must check
the examples they use to ensure that they are suitable for their
job. Remember that some of our examples show you how not to do
things - check in your notes. Well House Consultants take no responsibility
for the suitability of these example programs to customer's needs.
This program is copyright Well House Consultants Ltd, but is part of a module released under our Open Training Notes license. You may use it for your own training needs provided that you adhere to the conditions laid down. In summary, these require you (a) to make no charge for the training and (b) to include a full copy of our copyright statement with the material your distribute. Any of our images within this code may NOT be reused on a public URL without our prior permission. For Bona Fide personal use, we will often grant you permission provided that you provide a link back. Commercial use on a website will incur a license fee for each image used - details on request. |
| ||||||||||||
PH: 01144 1225 708225 • FAX: 01144 1225 899360 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho PAGE: http://www.wellho.net/resources/ex.php4 • PAGE BUILT: Sat Apr 13 08:12:34 2013 • BUILD SYSTEM: wizard | |||||||||||||