Wednesday, February 22, 2012

Choosing good abstractions

Coupling and cohesion The efficiency of the programs you design depends on how well you choose the classes they use.Well-abstracted classes lead to programs that are easy to maintain and extend. However, if you choose bad abstractions, you could end up with an error-prone application that doesn't model the problem domain effectively. Simplicity is the key to choosing good classes.The classes you choose should capture only one key abstraction. If a class performs two functions, then you should split it into two separate classes, each with its...

Objects, classes, and UML

Classes in UML A class is represented in UML by a rectangle with three compartments. These are Class attributes operations() Class The first compartment in the UML diagram contains the class name, which UML recommends is centered and in bold. It also contains general properties like package owner or stereotype. attributes The second compartment contains the class's attributes. Attributes are features within a classifier that describe a range of values that instances of the classifier may hold. operations() The third compartment contains the...

State, behavior, and identity

Objects Much of the power and flexibility of modern software analysis and design derives from its use of objects. The use of objects allows designers to create programs that are more easily maintained and extended. And it makes it easier to design very complex or large-scale programs. The advantage of using objects in programming is that they allow us to model the real world more accurately. Procedural programming represents the world as a series of processes acting on data. However, object-oriented programming represents it the way we really...

Thursday, February 16, 2012

Runtime and checked exceptions

Java packages contain Exception subclasses that describe exceptions that are specific to each package. Each subclass of Exception represents a particular exception type. The RuntimeException class - a subclass of Exception - and its subclasses describe exception objects that are thrown automatically by the Java Virtual Machine (JVM) at runtime.Runtime exceptions are generally caused by bugs in the source code. For instance, you need to ensure that a divisor is not equal to zero before dividing by it. The RuntimeException subclass contains various...

The Throwable class

All Java exceptions and errors are subclasses of a class in the java.lang package called Throwable. Only an object of type Throwable can be thrown in code, including exceptions and system errors. Methods of the Throwable class include getMessage toString initCause printStackTrace getMessage The getMessage method returns an appropriate String error message from a Throwable object.The getMessage method returns null if the object was not created with an error message. You should provide descriptive messages for all exceptions handled in code. toString The...

Wednesday, February 15, 2012

Using try, catch, and finally blocks

Java's exception-handling code is specified within a try...catch...finally block. The try block encloses the code that might cause an exception to occur. The code in the try block is called protected code.// basic try statement syntax try {   // protected code } catch (ExceptionType1 Identifier1) {   // exception-handling code } catch (ExceptionType2 Identifier2) {   // exception-handling code } finally {   // 0 or 1 finally clause }You use zero or more...

Introducing exception handling

In programming terms, an exception is an event that stops the normal execution of a program. For example, a program might try to access an element outside the bounds of an array, or some file input and output operation might fail. You need to ensure that your Java programs can deal with exceptions without simply crashing.When an exception occurs at run time, the method in which it occurs creates an exception object. Execution is aborted unless the exception is handled somewhere along the call...