Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
1 Commented Post
0 Endorsements
Ranked #3K
~8K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.

14 Posted Topics

Member Avatar for authi

When you declare or define a method a method has a method signature which is the access modifier ( public, private, or non which makes it package level ), then you have a return type ( void or of some type such as String, Int ( integer ) , etc …

Member Avatar for JamesCherrill
0
4K
Member Avatar for darkdai
Member Avatar for sushant5252

What have you gotten so far for your code? You have the definition fundamentals down for what you need to do, now you can search the java api for that. Searching the API for tokenizing will bring you upon a StringTokenizer. However, you could read in the file with a …

Member Avatar for jon.kiparsky
0
111
Member Avatar for datta.saru@gmai

And for reference you can't make a .exe from source code you implement in java. Only .jar and then you can use a 3rd party program to package it in .exe.

Member Avatar for yasuodancez
0
344
Member Avatar for Andrew Davis 64

You realize your first 3 sentences are redundant right? In your topic post saying you want to create an instant messenger program in java would have been enough. Now with out the nit picking... That would be the same as creating a chat program. Check out [URL="http://www.javaworld.com/javaworld/jw-01-1997/jw-01-chat.html?page=1"]this tutorial[/URL] and the …

Member Avatar for alex1986
0
232
Member Avatar for koti86

I think he means java software already made. koti86, java software in windows, mac, all work on linux also. Java is cross platform. That is usually one of the first things you learn when you start coding in Java ( The background/basic info about java ), maybe your teacher missed …

Member Avatar for yasuodancez
0
115
Member Avatar for TheSecOrg

Btw, Bill Gates didn't invent the computer. He invented The operating system Microsoft Windows on which he copied the source code of Steve Jobs Operating System and then added to it his own implementations/ideas.

Member Avatar for TheSecOrg
0
204
Member Avatar for fat0ali0ma

[QUOTE=fat0ali0ma;1321804]thx javaAddict I want to make a Planet ships protected by two spacecraft and shoot all the ship that want to get on the planet this is the game[/QUOTE] That is very ambiguous, or in other words you are not clear and explaining your self to well. You should take …

Member Avatar for fat0ali0ma
0
187
Member Avatar for Dupron

I guess he could have said what he meant by "desired result". If you mean that your desired result is nothing showing up on the text area then I have messed with this for awhile, and try changing all of your buffered reader and print writers in all classes to …

Member Avatar for yasuodancez
0
582
Member Avatar for fringe

You mean such as creating a method and returning a calculated radius? your method signature/skeleton would look like this [code] //comments here public int getArea(){ //calculations for the area of a circle goes here //then return it's value } [/code]

Member Avatar for tong1
0
129
Member Avatar for Elisa

All good recommendations. There is also a Stanford University course on Programming Methodology and they teach Java. The Lectures are actual class lectures of a professor teaching his students. From lecture 1 all the way through to about lecture 29 or some where around that. Each video is about 45 …

Member Avatar for yasuodancez
0
374
Member Avatar for new_programmer
Member Avatar for comSysStudent

[QUOTE=comSysStudent;1302195]Hi all I'm having a bit of trouble wrapping my head around exactly what hiding a class method does, can somebody try giving it to me in plain English? I'm going by the [URL="http://download.oracle.com/javase/tutorial/java/IandI/override.html"]Sun Java Tutorial[/URL] but I find the example a bit vague when it comes to the hiding. …

Member Avatar for yasuodancez
0
196
Member Avatar for Xufyan

You can do this.. [CODE] public class Test { /** * @param args */ public static void main(String[] args) { int MAX_DAYS = 7;//Number of max days in week Days[][] Days_Period = new Days[MAX_DAYS][1]; int i = 0; //Counter for Days_Period array for(Days day: Days.values()){//Get each day from enum starting …

Member Avatar for yasuodancez
0
1K

The End.