Here you are with your computer and you can’t wait to start writing Java applications. But first, you need to […]
Category: Java
Java Tutorial
Why Java is secure and robust?
Java is robust because: It uses strong memory management. There is a lack of pointers that avoids security problems. There is automatic garbage […]
Variable`s in java
Before you use a variable in java, you must declare it, specifying its data type. The int types is only […]
Java`s Reserved Words
when you are writing java code, you should know that java reserves certain words for itself as part of the […]
Commenting in your java code
Java supports three types of comments, two of which are taken from C++. you can surround a comment of any […]
System.out.println(“………..”)
The main method has one line of code in it: public class name { public static void main(String[] args) System.out.println(“linux”);} […]
public static void main(String[] args)
Here`s the next line of code. public class abc { public static void main(String[] args) {……}} Whats happening here is […]
Java Program First Line.
public class abc {……} This line indicates that we are creating a new java class named abc. After we translate […]
Writing Java code: Creating an application
public class app { public static void main(String[] args) { System.out.println(“Hello world”); } } If you are new to Java, […]
What is Struts?
Struts is a framework that provides the use of the Model-View-Controller architecture for designing large-scale applications. it is a project […]