Tutorials

Java Operator Precedence

The following table lists operators in Java programming language. The operators are listed in the order of precedence in the following table, i.e. operators that'll be evaluated first appear higher in the table. Operators that appear on the same line have equal precedence. Two things to note though

  • All operators listed below except for the assignment operators are evaluated from left to right.
  • Assignment operators are always evaluated from right to left.

SCJP 6.0 & SCJP 5.0 Thread Tips

Here are a couple of points to note when dealing with threads in Java, more so if you are preparing for either SCJP 6.0 or SCJP 5.0.

A Simple Java Program

In this tutorial I explain

  • How to write an elementary Java program
  • How to save
  • How to compile & run
  • And also a few points

Here's a simple Java source code -

Object Oriented Programming - A Primer

Object Oriented Programming is at the core of Java. Following is a brief description of OOP.

Two Paradigms :

Binary Shift Operations

I'll assume that you know what binary numbers are & that you are aware of the shift operators ( >> , << , >>>) in Java .

Why byte is not a byte anymore after a shift operation ?

Syndicate content
Operators