A Funny Java Flavoured Look at the World

Tuesday, May 23, 2006

SCJP 5 Resource - Flow Control

This is probably one of the easier topics on the Java 5 exam because if you are programming in Java then you will have had to use the flow control (IF and SWITCH statements etc).

The code also deals with the enum. This can be an exam nightmare because of all the extra things you can do with enums and the fact that it acts like a special class in many ways. It has the potential to provide some very tricky Java 5 exam questions so any information on this topic is welcome to me.

The Enum is also allowed in switch statements, this can be an exam gotcha because you might think that this isn’t allowed and they are trying to catch you out, in fact they are using the double bluff.

Enums are one of the new features added in Java 5 that are both simple and complex at the same time. As soon as you see them you think cool, this is going to be really useful and then you see the examples or Exam questions on Enums and you think, oh my god look at all the possible syntax errors I could run into. Unlike some of the other features added into Java 5 Enums was done excellently and doesn’t seem as much of a hack as the other features.

The tutorial also explains the new enhanced for loop which is a piece of cake but you have to make sure you understand what is on each side of the enhanced for loop.

Anyway here are the links, enjoy

SCJP 5 : Chapter 2. Flow Control (Part-1)

SCJP 5 : Chapter 2. Flow Control (Part-2)

SCJP 5 : Chapter 2. Flow Control (Part-3)

SCJP 5 : Chapter 2. Flow Control (Part-4)

SCJP 5 : Chapter 2. Flow Control (Part-5)


0 Comments:

Post a Comment

<< Home