Basics : Develop Simple Apps Fedora

From CDOT Wiki
Revision as of 20:58, 18 January 2011 by Selmys (talk | contribs) (Your First Java Program in Eclipse)
Jump to: navigation, search

Your First C Program in Eclipse

Screenshot-3.png
The first thing you have to do is to select the C/C++ perspective. You can do this by clicking the icon pointed to by the red arrow and selecting C/C++.




Screenshot-4.png
Your workbench is now configured for C/C++ development.





Screenshot-5.png
Next select File, New, C Project from the main menu.





Screenshot-7.png
Enter the name of your project, FirstCProject, and for the executable type select Hello World ANSI C Project, and then click on the Finish button.




Screenshot-8.png
Notice that you now have a simple Hello World program in the editor window. If you like you may make a small change to the program and save it or you can just leave it as is.




Screenshot-9.png
To execute the program select Run As from the Run menu. Then select Local C/C++ Application.





Screenshot-10.png
The output of your program is displayed in the Console window at the bottom of the workbench.




Congratulations! You've just run your first C program using Eclipse.

Your First Java Program in Eclipse

J1.png
First, start by selecting the Java perspective.





J3.png
In the Java perspective select File, New, Java Project.





J4.png
Enter your Java project name, FirstJavaProject and then click Finish.





J6.png
Select File, New, Class.





J7.png
Now enter the name of your class, First and check the box public static void main(String[] args) and then click Finish.





J9.png
In the edit view add in your print method as shown.





J10.png
Your Java program is now complete.





J12.png
Save your program and then select Run, Run As, Java Application.





J13.png
The output of your program is shown in the Console view.





Congratulations! You've just run your first Java program using Eclipse.