OOP LAB - 01 Intro To JAVA and Eclipse
OOP LAB - 01 Intro To JAVA and Eclipse
1. Eclipse Overview
Eclipse is an open source community that builds tools and frameworks for creating general purpose
application. The most popular usage of Eclipse is as a Java development environment which will be
described in this article.
2. Getting Started
2.1 Installation
Download "Eclipse IDE for Java Developers" from its website and unpack it to a directory. This is
sufficient for Eclipse to be used; no additional installation procedure is required.
Page. 1
Eclipse will start and show the Welcome screen [see Figure-2 given below].
Close the welcome page by press in little x besides the Welcome screen.
3. Eclipse UI Overview
Eclipse provides perspectives, views and editors. Views and editors are grouped into perspectives. All
projects are located in a workspace.
3.1. Workspace
The workspace is the physical location (file path) you are working in. You can choose the workspace
during start-up of eclipse or via the menu (File-> Switch Workspace-> Others). All your projects,
sources files, images and other artefacts will be stored and saved in your workspace.
3.2. Perspective
A perspective is a visual container for a set of views and editors. You can change the layout within a
perspective (close/open views, editors, change the size, change the position, etc.)
For Java development you usually use the "Java Perspective". You can change the layout within a
perspective (close/open views, editors, change the size, change the position, etc.). Eclipse allows you to
switch to another perspective via the menu (Window -> Open Perspective -> Other).
A common problem is that you closed a view and don't know how to re-open this view. You can reset
a perspective to its original state via the menu (Window -> Reset Perspective).
Page. 2
A view is typically used to navigate a hierarchy of information or to open an editor. Changes in a view
are directly applied. Editors are used to modify elements. Editors can have code completion, undo/ redo,
etc. To apply the changes in an editor to the underlying resources, e.g. Java source file, you usually have
to save.
Page. 3
Click on the checkbox that says, "Create separate source and output folders". This generates all your
.class files corresponding to the .java files in your workspace into a separate output folder.
Press finish to create the project. A new project is created and displayed as a folder. Open the folder
"oop.eclipse.ide.first".
Right click on src and select New -> Class [See Figure-5 below]
Page. 4
Create MyFirstClass, select the flag "public static void main (String[] args)" [See
Figure-6 below].
Page. 5
Include the following statement in the “main” method:
System.out.println(“Hello Eclipse”);
Now run your code. Right click on your Java class and select Run-as-> Java application [See Figure-8
below].
5. Java Examples
We know that each object in java is described in terms of its states and behaviours. Also we know that
an object is an instance of a class, whereas a class is a blueprint. In this example we are going to represent
a real world Bicycle in Java code. We will create a class Bicycle which has three states, speed,
numberOfGears, and cadence and it has methods to print the values of instance fields of Bicycle
object.
Page. 6
1. Go to D Drive, create a new Text Document and name it Bicycle.java
2. Type the following code in this file and save the file:
/* Bicycle class */
class Bicycle {
int speed=100;
int noOfGears=5;
int cadence=40;
}
}
3. Click on start, go to run option, type cmd and then hit the enter key
4. Type D: on command prompt
5. Set path to run java commands as follows
To set the temporary path of JDK, you need to follow following steps:
• Open command prompt
• copy the path of jdk/bin directory
• write in command prompt: set path=copied_path
For Example:
1. Create the Bicycle.java class in Eclipse IDE [follow the same guidelines that are used to create
MyFirstClass.java above]. Type the same java code for Bicycle class that is described in Example-
1(a).
Page. 7
2. Run your program in Eclipse and see the output in console window.
2. Type the following code in this file and save the file:
class CommandLineArg1 {
public static void main(String[] args) {
for(int i=0; i<args.length; i++){
System.out.println("args["+ i +"] =" + args[i]);
}
}
}
Example 3: Write one more program [as given below], compile and execute it from command
prompt.
class CommandLineArg2 {
public static void main(String[] args) {
int sum = 0;
for(int i=0; i<args.length; i++){
sum += Integer.parseInt(args[i]);
}
System.out.println("Sum = " + sum);
}
}
Page. 8
Example-4: Command Line Arguments from Eclipse IDE–
1. Create a java class file named CommandLineArguments in your workspace [Code given below].
2. We can give command line arguments to our program in eclipse. For passing command line
arguments to your program go to (Project->Properties->Run/Debug settings) and then in the launch
configuration select your java file to which you want to pass command line arguments to [See Figure
below].
Step-2: In Run/Debug Settings select the file CommandLineArgument and press Edit
Page. 9
Step-3: Select Arguments tab and enter 10 numbers separated by space then press OK
class Test
{
public static void main(String[] args)
{
// Code Fragments
}
}
What will be the output [Either Compile Time Error or RuntimeException] if an attempt is
made to compile and execute the above java file by writing each of the following code
fragments (Sr. No 1- Sr. No 6) in the main method. Observe the output and write it in the Output
column.
Page. 10
short s =10;
s= s+1;
char x = 1;
x = x+1;
float f = 10.56;
float x = 10.5f;
double y = 10.5;
if(x==y)
System.out.println(“Hello”);
else
System.out.println(“Hi”);
2.
float x1 = 10.57f;
double y1 = 10.57;
if(x1==y1)
System.out.println(“Hello”);
else
System.out.println(“Hi”);
byte b = -128;
System.out.println(--b);
byte b1 = 127;
3.
System.out.println(++b);
for(byte b=0;b<200;b++)
System.out.println(b);
byte b=(byte) 670;
4. System.out.println(b);
short s = (short) 40000;
if(10)
System.out.println(“Hello”);
5.
else
System.out.println(“Hi”);
System.out.println(10+20+”10”+”20”);
System.out.println(10+(20+”10”)+”20”);
6.
System.out.println(“10”+”20”+10+20);
System.out.println(“10”+”20”+(10+20));
for(byte b = 0 ; b <= 200 ; b++)
7.
System.out.println(“Hello”);
Page. 11
EXERCISES
1. Write a program called Fibonacci to display the first 20 Fibonacci numbers F(n),
where F(n)=F(n–1)+F(n–2) and F(1)=F(2)=1. Also compute their average. [ Note: the
value 20 should be passed as a command line arguments]
The output shall look like:
The first 20 Fibonacci numbers are:
1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 1597 2584 4181 6765
The average is 885.5
2. Write a Java program called SumDigits to sum up the individual digits of a positive
integer, given in the command line.
The output shall look like:
> java SumDigits 12345
The sum of digits = 1 + 2 + 3 + 4 + 5 = 15
Hints:
Page. 12