Java CodeProject
-
About the closest thing that I know of is the Sun website. The only reason I even thought of it is because I get about 30 emails a day from their Java forums. Brad Jennings "You're mom is nice. Mind if I go out with her?" - Jörgen Sigvardsson
-
Chris9820 wrote: is there anything like CP for Java development? Trust me, there is nothing like CP on the web! :cool:
Olli Make it idiot proof and someone will make a better idiot......
:suss: :rolleyes: :suss:Olli wrote: there is nothing like CP on the web!
true
Rickard Andersson8 Here is my card, contact me later! UIN: 50302279 E-Mail: nikado@pc.nu Interests: C++, ADO, SQL, Winsock, 0s and 1s -
Olli wrote: there is nothing like CP on the web!
true
Rickard Andersson8 Here is my card, contact me later! UIN: 50302279 E-Mail: nikado@pc.nu Interests: C++, ADO, SQL, Winsock, 0s and 1sBoolean.true
in pure Java perspective! :wtf: -
Boolean.true
in pure Java perspective! :wtf: -
Boolean.true
in pure Java perspective! :wtf:.S.Rod. wrote: Boolean.true Okay then, but I don't know Java... and after what people here on CP said about Java when I asked if Java is bad or good... I don't think wanna know Java... :~ Rickard Andersson8 Here is my card, contact me later! UIN: 50302279 E-Mail: nikado@pc.nu Interests: C++, ADO, SQL, Winsock, 0s and 1s
-
Have a look at the Java Tutorial: http://java.sun.com/tutorial/ NOTE TO VC++ GEEKS OUT THERE Don't follow this link for any reason, it can excite envy to you! :wtf:
-
www.theserverside.com[^] Cheers, Venkatraman Kalyanam Chennai - India "Being Excellent is not a skill, it is an attitude"
-
.S.Rod. wrote: Boolean.true Okay then, but I don't know Java... and after what people here on CP said about Java when I asked if Java is bad or good... I don't think wanna know Java... :~ Rickard Andersson8 Here is my card, contact me later! UIN: 50302279 E-Mail: nikado@pc.nu Interests: C++, ADO, SQL, Winsock, 0s and 1s
Rickard Andersson18 wrote: and after what people here on CP said about Java when I asked if Java is bad or good... I don't think wanna know Java... Java is fine. Java runtime environment bad. Actually the other day I was shocked to find myself LIKING a Java Applet embedded in a web page. I even, but only for a picosecond, considered licensing the applet for my projects.
Paul Watson
Bluegrass
Cape Town, South AfricaMacbeth muttered: I am in blood / Stepped in so far, that should I wade no more, / Returning were as tedious as go o'er Shog9: Paul "The human happy pill" Watson
-
Rickard Andersson18 wrote: and after what people here on CP said about Java when I asked if Java is bad or good... I don't think wanna know Java... Java is fine. Java runtime environment bad. Actually the other day I was shocked to find myself LIKING a Java Applet embedded in a web page. I even, but only for a picosecond, considered licensing the applet for my projects.
Paul Watson
Bluegrass
Cape Town, South AfricaMacbeth muttered: I am in blood / Stepped in so far, that should I wade no more, / Returning were as tedious as go o'er Shog9: Paul "The human happy pill" Watson
Paul Watson wrote: LIKING a Java Applet I have never licked a Java applet. Bad taste, pretty sure! ;)
-
.S.Rod. wrote: Boolean.true Okay then, but I don't know Java... and after what people here on CP said about Java when I asked if Java is bad or good... I don't think wanna know Java... :~ Rickard Andersson8 Here is my card, contact me later! UIN: 50302279 E-Mail: nikado@pc.nu Interests: C++, ADO, SQL, Winsock, 0s and 1s
Want to see a scary figure about .NET booleans btw? bool b; int b_layoutsize = Marshal.SizeOf(b); MessageBox.Show("a single .NET boolean takes " + b_layoutsize + " bytes in memory");
-
#ifndef VB #define TRUE 1 #define FALSE !TRUE #endif
:rolleyes::rolleyes:
Olli Make it idiot proof and someone will make a better idiot......
:suss: :rolleyes: :suss: -
No, youre completely wrong. it's - i've seen it! -
#define True 1
#define TRUE -1
#define False !True
#define FALSE !TRUE:~
"Der Geist des Kriegers ist erwacht / Ich hab die Macht" StS
sighist | Agile Programming | doxygen -
Rickard Andersson18 wrote: and after what people here on CP said about Java when I asked if Java is bad or good... I don't think wanna know Java... Java is fine. Java runtime environment bad. Actually the other day I was shocked to find myself LIKING a Java Applet embedded in a web page. I even, but only for a picosecond, considered licensing the applet for my projects.
Paul Watson
Bluegrass
Cape Town, South AfricaMacbeth muttered: I am in blood / Stepped in so far, that should I wade no more, / Returning were as tedious as go o'er Shog9: Paul "The human happy pill" Watson
Paul Watson wrote: I even, but only for a picosecond, considered licensing the applet for my projects. Yeah I've seen that shimmering text applet too - it's pretty. :rolleyes:
David Wulff
What the hell did I ever do to anyone?
-
there is jguru: www.jguru.com
-
Want to see a scary figure about .NET booleans btw? bool b; int b_layoutsize = Marshal.SizeOf(b); MessageBox.Show("a single .NET boolean takes " + b_layoutsize + " bytes in memory");
.S.Rod. wrote: bool b; int b_layoutsize = Marshal.SizeOf(b); MessageBox.Show("a single .NET boolean takes " + b_layoutsize + " bytes in memory"); Okay, I guess it's much memory under a boolean in .NET when you say it's scary? :) (I don't have VS.NET on this machine, so I can't try it) Rickard Andersson8 Here is my card, contact me later! UIN: 50302279 E-Mail: nikado@pc.nu Interests: C++, ADO, SQL, Winsock, 0s and 1s
-
Check these out: // everything related to Java www.jguru.com // Open Source for all (mostly Java and some non-Microsoft native) www.apache.org // Open Source most popular Application Server. An Application Server is a Java To Enterprise Edition reference implementation (implements specs) and you can think of it as .NET Framework (if this makes any easier for you). You will be able to use Java Naming and Directory Interface (JNDI) -an abstract framework for distributed object directories management, Enterprise Java Beans (EJB) - an automation of mapping your objects to any type of dabase and remoting of your objects, www.jboss.org // Jackarta Tomcat is Open Source most popular Servlet Engine. Think of it as runtime for you ASP pages, instead use Java and JSP extension for your server side programing. You can either implement your servlet as an extension of servlet framework implemented by Tomcat or embed your Java right into HTML and on first request Tomcat will compile those .jsp pages into .class files that comply with Servlet specs. jakarta.apache.org Good luck ;) Marat Kagetsya dogd' nashinaetsya :)
-
Have a look at the Java Tutorial: http://java.sun.com/tutorial/ NOTE TO VC++ GEEKS OUT THERE Don't follow this link for any reason, it can excite envy to you! :wtf:
perx wrote: NOTE TO VC++ GEEKS OUT THERE Don't follow this link for any reason, it can excite envy to you! Nope. I'm more likely to throw up :) Ryan Being little and getting pushed around by big guys all my life I guess I compensate by pushing electrons and holes around. What a bully I am, but I do enjoy making subatomic particles hop at my bidding - Roger Wright (2nd April 2003, The Lounge)
Punctuality is only a virtue for those who aren't smart enough to think of good excuses for being late - John Nichol "Point Of Impact" -
True, what i left was not right.
Olli Make it idiot proof and someone will make a better idiot......
:suss: :rolleyes: :suss:next time Olli, next time :-) Regards, Brian Dela :-)