Purchase Solution

Java Code Layout, Use of Variable Names, General Readability

Not what you're looking for?

Ask Custom Question

I need assistance in commenting on the enclosed code, consider things like code layout, use of variable names, general readability and understandability.

The enclosed program implements a class called ShortAddress that has the following attributes: firstName, secondName, and phoneNumber. Also, implement a class called FullAddress that inherits the above attributes while adding the attributes (int) houseNumber (simply 1, 2, ... etc. - i.e. no 1a or 3b's allowed), street1Name, street2Name and cityName. Use the keyword super in the constructor. The application class should allow the user to input address details and then give the user the choice of viewing the short address details or the long address details. This means the code should have a minimum of 3 classes for the application. Furthermore, use exception handling to make the program robust.

Purchase this Solution

Solution Summary

In general it is a good software programming practice to follow variable naming conventions. For example, include abbreviated form of variable type as prefix.

Solution Preview

In general it is a good software programming practice to follow variable naming conventions. For example, include abbreviated form of variable type as prefix.

My comments on the following classes:

ShortAddress.java
Rather than declaring and assigning default values to public variables, they should be ...

Purchase this Solution


Free BrainMass Quizzes
Word 2010: Table of Contents

Ever wondered where a Table of Contents in a Word document comes from? Maybe you need a refresher on the topic? This quiz will remind you of the keywords and options used when working with a T.O.C. in Word 2010.

Inserting and deleting in a linked list

This quiz tests your understanding of how to insert and delete elements in a linked list. Understanding of the use of linked lists, and the related performance aspects, is an important fundamental skill of computer science data structures.

Basic Networking Questions

This quiz consists of some basic networking questions.

Basic UNIX commands

Use this quiz to check your knowledge of a few common UNIX commands. The quiz covers some of the most essential UNIX commands and their basic usage. If you can pass this quiz then you are clearly on your way to becoming an effective UNIX command line user.

C++ Operators

This quiz tests a student's knowledge about C++ operators.