PDA

View Full Version : I Am New In Java



gdsb
12-03-2003, 10:28 PM
Hello
I am new in java and I want to learn java.
I wanto one web sit where I can learn java.

Thank you very much

~FunK_mOb~
12-03-2003, 10:37 PM
Java-tutorial (http://www.trans4mind.com/personal_development/JavaScript/)

;)

I.am
12-04-2003, 12:19 AM
Originally posted by ~FunK_mOb~@3 December 2003 - 17:37
Java-tutorial (http://www.trans4mind.com/personal_development/JavaScript/)

;)
He said Java not JavaScript. Java and JavaScript are not the same.

@gdsb,
I am not sure if there are any good websites where you can just learn Java. For javascripts that are many.

For java, however there are many free code sites which can be used for regerence. So dont depend on learning it from one website.

Although I am not sure whether you really want to learn java or javascript?
Any programming experience?

ZaZu
12-04-2003, 12:48 AM
java.sun.com (http://java.sun.com/) ;)

ultimatejester
12-04-2003, 02:35 AM
I am learing Java now a days but so far we didnt learn anything new. I would suggest that you start with C++. C++ has more power.But if still want to stick with java you will find plenty of sites on google. I have (Ready to Program) which is a java IDE and so far one of the best one i know of. It uses IBM Jikes compiler which is a lot faster. Let me know if you want it through a pm.

I.am
12-04-2003, 05:55 AM
Originally posted by ultimatejester@3 December 2003 - 21:35
I am learing Java now a days but so far we didnt learn anything new. I would suggest that you start with C++. C++ has more power.But if still want to stick with java you will find plenty of sites on google. I have (Ready to Program) which is a java IDE and so far one of the best one i know of. It uses IBM Jikes compiler which is a lot faster. Let me know if you want it through a pm.
You can have jikes compiler working with anything. IDE is just an interface. :)

Java from sun came with javac compiler which sure is very slow.

Amarjit
12-04-2003, 05:34 PM
Java seems very popular nowadays. But in my programming youth, I bitterly resented it. I recommend learning C++, it's a high-level language, which is both relatively easy to learn and powerful.

3rd gen noob
12-04-2003, 05:36 PM
:-"

cough, cough

class harmless
{
public static void main(String[] args)
{
int loopStop = 0;

while (loopStop == 0)
{
System.out.println("Google");
}
}
}

I.am
12-04-2003, 07:22 PM
:lol:
another version little modify

class IWantToLearnJava{
public static void main(String[] args){

String Looky = new String("Java");
while (Looky.equals("Java")){
System.out.println("Google");
}
}
}