Sep
2
2009
In my opinion one of the most confusing topics that Java has to offer is how it passes its variables. Two people can argue for over a page trying to say the same thing but not realize it until after.
Continue reading
3 comments | tags: Java, pass, Tutorial, variables | posted in Articles, Java, Tutorial
Aug
31
2009
The Ternary Operator
The ternary operator is a source of confusion for many beginning programmers. In case you don’t know what the ternary operator is, it looks something like
String message = (isvalid?"Valid":"Invalid");
The ? represents the thought that goes through their head when they see it and they probably won’t get to the : .
Continue reading
no comments | tags: Java, ternary operator, Tutorial | posted in Articles, Java, Tutorial