Talk:Java programming language

Missing image
Cscr-featured.png
Featured article star

Java programming language is a featured article, which means it has been identified as one of the best articles produced by the Wikipedia community. If you see a way this page can be updated or improved without compromising previous work, feel free to contribute.

An event mentioned in this article is a May 23 selected anniversary


Contents

Incorrect information

There's a paragraph regarding networking facilities that bridges the "platorm independent" goal and "networking libraries" goal. It's not a correct paragraph, but I don't know the best way to split it. Help, please... -Alan D

I don't see the problem, if any. The only places those are mentioned together is where they are specifically mentioned as being the goals of the language, where "goals of the language" is the topic. --LDC

If you don't see a problem with it, then I'm happy. -Alan D


A few more topics to add

Any volunteer for : - the Java Security Model ? - the Java Community Process ?

Java history

Some notes about the Java version history would be nice. An especially which version is included in which browser. Kwaku

Maybe you're confusing Java with JavaScript?
Java 1.1 was included with IE at some point. It's since been taken out (?). But it plugs into the current browser, but you have to DL & install it. —Frecklefoot 16:19, Apr 16, 2004 (UTC)
I just added a sentence near the beginning in an effort to disambiguate Java and JavaScript. Which is more common in web pages, and how does their function differ in web pages? I would guess javascript is used more often, but I really don't know. It would be nice if someone with more knowledge in this area than me could help amplify the distinction, since I'm willing to guess they are quite often confused by us non-computer jocks. Spalding 14:49, Feb 19, 2005 (UTC)

Reviews

Lee, have a look at [1] (http://groups.google.com/groups?hl=en&threadm=20010920001016.15115.00000873%40mb-fm.aol.com&prev=/groups%3Fnum%3D25%26hl%3Den%26group%3Dcomp.lang.java.programmer%26start%3D25%26group%3Dcomp.lang.java.programmer). Good reviews so far!  :-) --LMS


This is a "How To" article

This should be moved to a howto somewhere, as it doesn't describe the language at all.

One of the most confusing concept for those just starting to learn the Java language is the notion of a ClassPath that needs to be set before anything can be either compiled or executed.
With recent versions, Java features a -classpath parameter which makes it unnecessary to set a CLASSPATH environment variable. In fact, I haven't used the latter since then. --Maik 17:46, 2004 Oct 13 (UTC)

Java a platform too

Hmm, I think this article would be helped with a look-thru of the old Java whitepaper (http://java.sun.com/docs/white/langenv/). For one thing, Java is a platform as well as a language. The article as it stands is confusing on this issue. Also a major design goal is a relatively safe language for average programmers, so fingers aren't cut on the difficult parts of programming.

Still, this article is well-written, and I'd change it right now except that it would take a little time to not chop up the text terribly. Maybe I would get rid of the part that says there are "four" design decisions behind Java, and just turn it into a list.

The article is titled "Java programming language", and is about the language, not the platform. If the article doesn't make this clear, then perhaps it could be reworded a bit and linked to another article about the platform. And frankly, the whitepaper is a pretty awful source of information--it's mainly a publicity piece for Sun, that contains all of their goals and ideas, but none of the day-to-day realities of the majority of working Java programmers. This is an encyclopedia, not an advertising medium. --LDC
Nonetheless, this article is currently the redirect for 'Java platform' and now we have Groovy it would be very useful to point to a summary article like the Java section in the Sun Microsystems page. I'll make the same comment on the Java platform page. User:webmink
I have made a start on this. [[User:Smyth|– Smyth]] 13:11, 13 Nov 2004 (UTC)
There is also a section on Java as a platform on the Platform (computing) page.--Jondel 18:49, 25 Sep 2004 (UTC)

Java: a platform and a middleware too

I'd like a description as platform too. Java is not only a 1)platform and 2) a language it is also a middleware. Some how thid categories or definitions must be inserted or made. Jondel


Java is platform independent

is a myth, misleading and misnomer.

Rather, the JVM is ubiquitous on all types of devices and chips. When they say platform-independent it is really because the Java interpreter or JVM can be found almost everywhere(on all devices/chips/sw packages). The installation of an interpreter or JVM has become an industry standard. Java is not the platform independent, Java is the platform( or the ubiquitous JVM or Java interpreter is the platform). Jondel 04:09, 13 May 2004 (UTC)~~

I think of a programming language as its syntax, its semantics and its standard libraries. For Java, these three things are in large part platform-independent. In real life most Java applications will execute the same way on all platforms.
It's true that Java requires a platform-dependent interpreter, but I wouldn't characterise the interpreter as part of the "language". Just as I wouldn't regard the compiler as part of the language for a compiled language.
It's also true that there are platform-specific APIs in Java, but these tend to be discouraged or deprecated in the documentation. It is quite possible to avoid these APIs for almost all applications, and in practice they are avoided most of the time. The Java programming language isn't perfectly platform-independent but it does a very good job of it.
Ben Arnold 04:50, 13 May 2004 (UTC)
Different category ?
Agreed on the language and it does a pretty good job of being platform independent. You seem to be a programmer.
I am targetting beginners and newbies. Also I wanted to focus on the platform aspect.
The term 'platform independence' may lead to confusion. If Java is to be described, it is important to explain or examine its aspect as a platform and the Java interpreter. What if a new OS does not have a JVM? The programmer would need to know that all bytecode actually needs an interpreter. People tend to think that the platform is where program was compiled?
Maybe this should be under a different category (Java software?Java platform? Java API?) as the interpreter really is not part of the Java programming language. Jondel 05:49, 13 May 2004 (UTC)~~
I'm of the (extreme) opinon that the intrepreter or compiler is absolutely nothing to do with the language, and that languages should be thought of as abstractly as the colour red, rather than a pot of red paint. CGS 19:20, 13 May 2004 (UTC).

Removed instruction

This appeared in one of the articles, and I don't really think it is encyclopedia content. It's really more of an instruction for us writers, so I'll just leave it here in Talk for now:

Java is a trademark of Sun Microsystems. Like all trademarks, "Java" is an adjective; when referring to Java technology, use a generic term after the word "Java". Correct: "program written in the Java language runs on the Java platform." Wrong: "*program written in Java runs on Java." For more information, visit Sun trademark policies (http://www.sun.com/policies/trademarks).


JDK versions

How do the JDK version below relate to the so called "Java 2 platform"?

  • JDK 1.0, 1995
  • JDK 1.1
  • JDK 1.2
  • JDK 1.3
  • JDK 1.4, 2002
  • JDK 2.0, 2003

My understanding is that everything 1.2 and beyond is the "Java 2 Platform", but I can't find proof. Here's the Java 2 page: [2] (http://java.sun.com/j2se/)

What is this JDK 2.0???? The latest version is 1.5 Enochlau

--JDK is SDK is API and a complete set is a platform--

Hi! Please correct me if I am wrong.

For most software developers, JDK (Java Development Kit) are nothing more than SDKs but in Java. SDKs are ussually provided commercially by a company. They are also ussually called APIs. A complete set to allow you to program are ussually called platforms. It would be good to refer to java.sun.com. For the meantime, I believe that JDK 2 is Java 2 and is the same as Java 1.2 . Jondel


  • Java 2 is java 1.2 up, the change was made since there where significant changes to the java API's. dns


JDK 1.5 is called Java 5.0 and J2SE 5.0 - confusing I know, but thats what the latest version is called. J2SE/J2ME/J2EE 5.0 actually.. The reason they changed their mind and called it J2SE 5.0 instead of J2SE 1.5 was that it was such a large improvement over the previous versions. So same idea as when they increased the platform from Java to Java 2 at 1.2..

Versions
JDK Java Platform
1.0 1.0 1
1.1 1.1 1
1.2 1.2 2
1.3 1.3 2
1.4 1.4 2
1.5 5.0 2

Speaking of versions, I believe that Java Web Start was released in 2000 sometime, Ie at around 1.3.1 release, if that matters. Article: Announcing Java Web Start Technology (http://java.sun.com/features/2000/06/webstart.html)


Objectionable phrasing

I object to the phrase "actually the entities containing data" in the section on Object Orientation. It's meaningless and unhelpful. However, I have already deleted it once, and the author re-inserted it. I don't hate it enough to delete it again, so I'll leave it to the wise Wikipedia editors.


Language facilities

"It contains language facilities and libraries for networking (more or less)." - What "language facilities" are being referred to, here?

Perhaps dynamic class loading? --P3d0 21:51, 13 Aug 2003 (UTC)
Which isn't really a part of the language, as defined in http://java.sun.com/docs/books/jls/index.html Reflection is provided entirely by the class libraries. If we open it up to that, then C can do the same.
No, dynamic class loading is not reflection. Two different things. Dynamic class loading is very much a part of the Java language. See http://java.sun.com/docs/books/jls/second_edition/html/execution.doc.html#44459 It is far more pervasive and integral to Java than to C; in fact, all classes in Java are loaded dynamically.
Thats the way the Java virtual machine works, not the Java programming language. Sure they're muddled beyond belief, but I feel as though I can safely draw a line and say that the dynamic loading you're talking about isn't part of the language. (I certainly hope that native implementations of the Java programming language won't do the same thing!)
Ok, what about when I say "2+3" and the VM adds two numbers together? I guess that's also how the VM works, not the language? Honestly, we can argue about this all day, but if you really don't think dynamic class loading is a fundamental part of the Java language, then perhaps we must simply agree to disagree. As you say below, it's not like it really matters anyway. --P3d0 13:08, 19 Aug 2003 (UTC)
Besides, the fact that a language feature is implemented in a library is just good design, and doesn't mean that feature isn't part of the language. For instance, would you say that variadic functions are not part of C just because you need to #include <stdarg.h> to use them? --P3d0 15:52, 18 Aug 2003 (UTC)
I'd say they're part of C because they affect the syntax. IMO, something isn't part of the language until there are syntactic elements related to it. Up until that point, I can get rid of it and replace it. This is getting a long ways away from being something that has anything to do with language facilities for networking. How does the dynamic class loading of the Java programming language (if there are any which pertain to the language, rather than its implementation) distinguish its networking facilities from another language enough that it is worth mentioning them?
Because IIRC the entire motivation to add dynamic class loading was to allow programs to be loaded and run incrementally over a network. --P3d0 13:08, 19 Aug 2003 (UTC)

Java was not designed with the goal to "more or less" have facilities for networking, etc. If you are not satisfied with Java's attainment of those goals, an unbiased discussion of how and why these goals are incompletely attained should follow their detailed description.


Link bezerker

Someone has gone completely bezerk with links: [3] (http://en.wikipedia.org/w/wiki.phtml?title=Java_programming_language&diff=1874041&oldid=1866496). Seriously, do we need links for "reputation", "speed", and "thing"?

This change needs to be backed out. Unfortunately there have been revisions in the mean time.

Maybe we need to get this page protected until the revert is done and subsequent revisions incorporated. But its a pity someone's labour will go a waste. Jay 14:00, 9 Dec 2003 (UTC)

Reverting and merging of later revisions has been done. (See Wikipedia:Make only links relevant to the context for reference). Jay 14:30, 9 Dec 2003 (UTC)

Java logo

Should we be displaying the Java logo here without permission. Sun's logo website http://logos.sun.com says the terms are very strict for the use of its logos. Jay 14:10, 18 Mar 2004 (UTC)

I would say no — the logo should be removed. RedWolf 01:15, Mar 19, 2004 (UTC)

After reading the usage agreement for the Java logos, I don't believe Wikipedia can use the Java logo on its site unless approved by Sun MicroSystems. I am therefore going to remove the logo from the article.

Also see: http://www.sun.com/policies/trademarks/#20a

RedWolf 02:36, Mar 19, 2004 (UTC)

Wikipedia:Logos states: "It is not necessary to seek formal permission from a corporation in advance of using their logo, so long as the usage is fair use, does not create any impression that the logo is associated with or endorses Wikipedia or the article it appears in, and does not create any reasonable grounds for complaint by the trademark owner. The purpose of the specific guidelines above is to meet these conditions." Fredrik 14:19, 19 Mar 2004 (UTC)

If the Java logo can be used on Wikipedia, then why wasn't it properly handled as per Wikipedia:Logos? For example boilerplate text on the image description page and image caption? RedWolf 17:52, Mar 19, 2004 (UTC)

Don't ask me, I didn't upload and insert it in the first place... I merely replaced the low quality image with a better one. If deleting it seems like the right thing to do, I'm not going to defend the case further. Fredrik 19:46, 19 Mar 2004 (UTC)


Confusing terminology

From the article: This should not be confused with the

break label;

and

continue label;

statements in C and C++, which function identically to goto.

As a C++ user, I am very confused since these statements do not exist in standard C/C++. I removed this part. Perhaps the author was thinking of some nonstandard extension?

I agree. "break;" and "continue;" statements are part of standard C and C++, but they do not have any sort of label after them in standard C or C++. Only in Java do they have that label. --DavidCary 17:45, 19 Oct 2004 (UTC)


To describe the language constructs or not?

I feel strongly that articles on programming languages should focus on their development and history, and on what sets the language apart from all others. This article does a great job of setting those things forth. However, as a programmer with eir hands in several other disciplines, I think that an article like this is not the place to go into any detail on the language constructs. I personally skim over such descriptions, and the non-l33t reader will certainly do likewise. The intricacies of, say, exception handling or string manipulation simply cannot be conveyed in one or even ten paragraphs of text in a Wikipedia article. Besides, "real" reference materials abound to cover the mechanics of the language, on the Web and in print.

In summary, programmers don't need syntactic information (they already have it), and non-programmers don't need it. I do think the "hello world!" program should have a space, since it can offer a quick glimpse into that language's world that both programmers and non-programmers would find useful.

That said, perhaps articles on programming languages should link to articles that cover their particular syntactic or semantic nuances in more depth, or link to Wikibooks.

Jeeves 14:35, 25 Mar 2004 (UTC)

I am completely agree with you. I am very surprised that the article does not mention important issues like open-sourcing of Java and tools like gcj and classpath projects while going into mere syntaical explanations of loops. Never hesitate to make a change. Most of the time, it looks bad to you because it is bad. -- Taku 05:16, Mar 28, 2004 (UTC)

TakuyaMurata edits

This is regarding the 2 edits by User:TakuyaMurata.

  • The one with comment "(oh boy; the article is terrible)": Has he just deleted the contents or moved them over to a new/existing article ? If it has been moved pls provide the new article name, if it has been deleted based on the above discussion, then I disagree. Language syntax is as important to the article as anything else.
  • The one with comment "(=Versions= -> =History)": What is the basis of removing a bulleted section that was rich in information ?

Jay 07:05, 28 Mar 2004 (UTC)

  • I disagree with the changes. This article became a featured article with all that information. I think we should at least put in the stuff about versions back in. Sasha Slutsker 12:51, Mar 28, 2004 (UTC)

Ok both of you why? As discussed above there is no reason to go detail about the syntax. Wikipedia is not a language manual. Besides the language syntax section is awfully incomplete. I have settup the new article so that I can put it in VfD. Give us comments. Also there is no reason to provide detailed information about which version supports which platforms. I know it was featured but I have just improved the article by eliminating redundancy. -- Taku 15:09, Mar 28, 2004 (UTC)

What does this mean : "I have settup the new article so that I can put it in VfD"
Why do you think "there is no reason to provide detailed information about which version supports which platforms"
Redundancy is not an issue as long as the same information is presented in different ways. A bulleted list is useful when the reader wants to casually browse through a long article. Jay 15:35, 28 Mar 2004 (UTC)
I moved some syntax information to brief overview of the syntax of Java. Sorry I have forgotten to mention it. The issues is: is the table of versions against years really useful? The history section still mention when each version was released and it doesn't take much to skim the section. -- Taku 15:49, Mar 28, 2004 (UTC)
There is no reason to delete the bulleted information, it was very useful. I am putting it back in, please don't take it out again. Sasha Slutsker 23:29, Mar 28, 2004 (UTC)

Poll

I propose reverting this article to the form it was in before Taku's edits of 28 March and later, on the basis that the content which has been removed or modified has made the article significantly less useful. If there's something Taku wants to remove, Taku can then try seeking consensus for the changes first. Please indicate your support or opposition. Jamesday 15:26, 6 Apr 2004 (UTC)

"which has been removed or modified has made the article significantly less useful."
Can you specify how so? You mean the syntax of Java? -- Taku 16:05, Apr 6, 2004 (UTC)
The sections:
  • Control structures
  • Unstructured control (the early exits from loops and methods portions)
  • Primitive data types table
  • Input/output
That is, what Jay and Sasha appear to be objecting to the removal of just above this poll. The removals removed the core of the ability to compare the control and data handling capabilities of this language to those of others. Jamesday 20:06, 6 Apr 2004 (UTC)

Support:

  1. Jamesday 15:26, 6 Apr 2004 (UTC)

Oppose:

  1. Kevin Saff 16:10, 6 Apr 2004 (UTC). I don't see what has been "removed". If anything, I think the history should now be broken out into a separate article, History of the Java programming language.
I think he is referring to this one [4] (http://en.wikipedia.org/w/wiki.phtml?title=Java_programming_language&diff=2950772&oldid=2950702) though I am still not sure what he means by modified or significantly less useful. -- Taku 16:18, Apr 6, 2004 (UTC)
I see. I didn't look at edits before March 28, since he only mentioned 28 March and later. I think that info could go into a Syntax of the Java programming language if that doesn't already exist. How do other long programming language articles deal with specific syntax? Kevin Saff 16:27, 6 Apr 2004 (UTC)
It varies. C has it in C syntax, with very little about the language itself in the main C article. This one (Java) was much more informative. The main C article looks pretty weak, describing the history and such but not the language itself. At some point I'll take a look and see how to put the description of the C language in the main article and the history in a subsidiary article. Jamesday 20:37, 6 Apr 2004 (UTC)
I see; it looks like a philosophical battle over whether the syntax or the history of a language is more fundamental. What's wrong with putting an overview in the main article, and creating separate articles for each? Languages like C and Java certainly seem important enough to justify multiple articles. Putting all the syntax in the main article seems to limit the things one can say about it (such as the history and parseability of the syntax, which is quite interesting for C!) Kevin Saff 22:55, 6 Apr 2004 (UTC)
Completely in favor. Let's do it. Jeeves 08:28, 7 Apr 2004 (UTC)

Abstain:

  1. Taku 16:05, Apr 6, 2004 (UTC)

Comments:

  • The poll is meaningless because whenever we revert to whatever version, someone including me will make a further edit that might contradicts the reverted version.
  • The poll is meaningless because this is wiki, not democracy.
  • Refer Talk:Java syntax. User:fredrik suggested the incorporation of syntax related info into the curly brace family. Though I can't visualise how it can be done, I'd be happy if he or someone else does it. Jay 19:46, 7 Apr 2004 (UTC)

Pronunciation

Does Sun specify how the word "Java" should be pronounced? Merriam-Webster [5] (http://www.merriam-webster.com/cgi-bin/dictionary?java) says that both "Java" (a's pronounced as the 'a' in "hat") and "Java" (a's pronounced as the 'o' in "body") are correct. I've always heard and used the second form, but a coworker of mine uses the first version and it drives me nuts! Does Sun actually dictate hwo they expect it to be phonated? —Frecklefoot 16:19, Apr 16, 2004 (UTC)

Americans tend to pronounce it Jova ('o' sort of as in body) while most(?) Canadians tend to say it with a hard 'a'. James Gosling, the inventor of Java, is a Canadian living in the US who pronounces it Jova.

Steve-o 03:27, 17 Apr 2004 (UTC)

As in "hat" and "body"? Neither of these sound right to me. In New Zealand we use the "a" sound in park, but without any r (we don't pronounce the r in park anyway). Thinking about Canadian pronunciation, maybe this is what you mean by the "o" in "body". We use a very sound in body and park, so it can be confusing.

To put it simply I pronounce Java to rhyme with lava, and that makes sense to me. Presumably an Indonesian would be able to give the most accurate pronunciation, or am I making incorrect assumptions about the etymology of the name.

To use "a" as in "hat" just sounds crazy to me, even when I assume a thick US drawl.

Ben Arnold

It's because Americans say body like baaahhdeee... Dysprosia 11:21, 25 Apr 2004 (UTC)
Well, I pronounce java with an a as in hat. If you think about it, I don't say novigator, I say navigator. I don't say hove, I say have, (though I am a Jay-Z fan:)). So it's pronounced java, not jova. That's just what I say and what I've heard here in Southwestern Ontario (2 cents from a wikimember in training).

--204.101.190.5 00:42, 7 May 2004 (UTC)

A tiny section on this in the article might be interesting, I live in NZ as Ben does and we pronounce it Jahva. The only other way to pronounce it I can think of is Javva. (Assuming Dysprosia is correct in saying how US citizens pronounce Java as body.) porge 23:19, 23 Aug 2004 (UTC)

The initial paragraph in "Platform independence" conflates 'binary' and 'source' portability. Java programs are portable in terms of their specification because the language (with some exceptions like jni) does not depend on the form of the underlying architecture. Compiling programs into JVM gives you a portable binary transport layer, but this is fundamentally irrelevant to Java itself, and to Java program portability.

Quote about Java

"Java: The blinding speed of Smalltalk combined with the simple elegance of C++." —Kenneth C. Dyke, Apple Computer

Audience and Context.

Hello,

I am new to this site and have a strong professional interest in the Java Programming Language.

I have two concerns that would fall within the area of strong criticisms regarding the text to date.

Firstly there is nothing wrong with the text per se, however, I have difficulty in determining who the audience this is being written to. Is it the technical Java programming developer community? or the world at large. Either of these audiences would find difficulty in reading this article. This is a particularly difficult question due to the fact that I could identify several distinct and disparate audiences, each requiring many different perspectives.

Secondly, I find that large chunks of the value of Java is missing. I am seing most of the individual trees, but no description of the forest. The conceptual paradigms that Java introduces are significant and a large part of why the language has travelled as far so fast. These are also the reasons that it introduces the opinions and conflicts in the marketplace.

I see the base of what has been written as real value in dealing with the complexity of Java and communicating that to those who want or need to know. As Java continues to expand and become more and more of a day to day "thing" in all peoples lives, this opportunity to translate much of this complexity is of vital interest.

thanks

Split this up, JRE & JDK seperated

I think the Java Runtime Environment section should have its own article, same as the developer's Kit. What we could do is have a blurb on it in this article and have a See also: Java runtime environment there.

The reason why I suggest we split it up is because the java programming language, the java runtime environment, and the java developer's kit are three different things/ideas. That may make things clearer. --ShaunMacPherson 05:11, 5 Nov 2004 (UTC)

I have made a start on this. [[User:Smyth|– Smyth]] 13:12, 13 Nov 2004 (UTC)

JVM and JRE

What is the differences between them ??. :-?

JVM is a generic term, see Java virtual machine. JRE specifically refers to Sun's product, comprising their own JVM implementation and their own Java API implementation. [[User:Smyth|– Smyth]] 13:13, 13 Nov 2004 (UTC)

Responses to the Java Language is outdated

The complaints about collections and casting etc in this section are out of date with the generics & auto-unboxing in v1.5 (which are discussed in following section) and I can't see any other point in that section but have a feeling that if I removed it, it would be replaced. Anyone care to fix it?

Not neccesarily everyone uses Java 1.5 and thus the prblems still remain. Of couse, adding some mention that they were fixed with the release of 1.5 would be nice. -- Taku 18:57, Nov 12, 2004 (UTC)
I've added the 5.0 versions. Although the Java IO section needs some similar treatment. Why focus on IO over the whole of Java is strange to me --Calvin 21:33, 16 Nov 2004 (UTC)

Gosling??

I think the first paragraph should either omit the mention of Gosling, or explain who he is. The way it is written now, the reader has no idea who Gosling is until he or she continues farther down the article, which is confusing.

Here's the paragraph I'm referring to: "Java is an object-oriented programming language developed primarily by Sun Microsystems. Gosling and friends initially designed Java, which was called Oak at first (in honour of the trees outside Gosling's office), to replace C++, although the feature set better resembles that of Objective C."

Pronunciation, Round 2

It's been "suggested" once again that the opening sentence of the history section should bear a pronunciation note indicating that Java is "usually pronounced with a short 'a' as in 'hat.'" As a professional Java programmer, I find this very hard to swallow; although many Canadians may pronounce it this way, it's only notable if this differs from the usual pronunciation (as in coffee). Anyone? ADH (t&m) 07:15, Jan 14, 2005 (UTC)

I always say jah-vah. It's best we don't mention an "official" pronunciation at all. Dysprosia 07:19, 14 Jan 2005 (UTC)
Same here, I would pronounce it , not . Peter O. (Talk) 07:51, Jan 14, 2005 (UTC)

My bad, I thought the majority was for "short" "a"

While probably not common amongst English speakers, I've heard Java pronounced as (in the Netherlands and Poland) (ie. English spelling 'yava'), matching local pronounciation of the coffee-bean. How consistant is this with the Javanese pronounciation? And how common is this pronounciation in europe? (ie, in German)

It's probably needless to say, but in japan "java" becomes jyaba. -- Taku 17:54, Apr 2, 2005 (UTC)

Strictfp

I have just landed on the orphaned Strictfp article via a random link. I've wikified it and added it to category:Java programming language, but it could do with a link from somewhere. The trouble is I don't know where would be apropriate - or even if it is apropriate to keep it as an article of its own, or should be merged somewhere (but I don't know where would be apropriate). I thought about VfDing it, but I don't know enough about the subject to know if it is really worth keeping or not. I am putting this here becuase as a featured article this talk page is probably going to be on the watchlists of people who know what they are talking about! Thryduulf 15:14, 2 Apr 2005 (UTC)

I've added a link to strictfp, which is mentioned in Java programming language#Version history. --MarkSweep 18:20, 2 Apr 2005 (UTC)

Edits by 67.118.123.235

Yet another mass delete, please discuss large changes here first and get the version correct please :*)

--Calvin 22:17, 19 Apr 2005 (UTC)

Request for references

Hi, I am working to encourage implementation of the goals of the Wikipedia:Verifiability policy. Part of that is to make sure articles cite their sources. This is particularly important for featured articles, since they are a prominent part of Wikipedia. The Fact and Reference Check Project has more information. Thank you, and please leave me a message (http://en.wikipedia.org/w/wiki.phtml?title=User_talk:Taxman&action=edit&section=new) when a few references have been added to the article. - Taxman 19:35, Apr 22, 2005 (UTC)

"Sun Control" comments in API

The comments that have been added to the article concerning Sun control are POV and reflect a shallow understanding of the JCP and of the historic situation. While Sun is the spec lead on many JSRs in the area of J2SE platform features, that's not the case with J2ME platform features and is not a necessary feature of the JCP - expert group leadership is now diverse. Additionally, ownership of specs is always shared by the expert group lead for practical reasons, so implications that that's bad in Sun's case are demonstrably POV. If it's essential that this topic is covered, a full explanation will be needed, and I suggest the appropriate place for it is in the JCP topic. As to controversy - well, it's controversial among those who don't understand it! --Webmink 01:49, 25 Apr 2005 (UTC)

Navigation

  • Art and Cultures
    • Art (https://academickids.com/encyclopedia/index.php/Art)
    • Architecture (https://academickids.com/encyclopedia/index.php/Architecture)
    • Cultures (https://www.academickids.com/encyclopedia/index.php/Cultures)
    • Music (https://www.academickids.com/encyclopedia/index.php/Music)
    • Musical Instruments (http://academickids.com/encyclopedia/index.php/List_of_musical_instruments)
  • Biographies (http://www.academickids.com/encyclopedia/index.php/Biographies)
  • Clipart (http://www.academickids.com/encyclopedia/index.php/Clipart)
  • Geography (http://www.academickids.com/encyclopedia/index.php/Geography)
    • Countries of the World (http://www.academickids.com/encyclopedia/index.php/Countries)
    • Maps (http://www.academickids.com/encyclopedia/index.php/Maps)
    • Flags (http://www.academickids.com/encyclopedia/index.php/Flags)
    • Continents (http://www.academickids.com/encyclopedia/index.php/Continents)
  • History (http://www.academickids.com/encyclopedia/index.php/History)
    • Ancient Civilizations (http://www.academickids.com/encyclopedia/index.php/Ancient_Civilizations)
    • Industrial Revolution (http://www.academickids.com/encyclopedia/index.php/Industrial_Revolution)
    • Middle Ages (http://www.academickids.com/encyclopedia/index.php/Middle_Ages)
    • Prehistory (http://www.academickids.com/encyclopedia/index.php/Prehistory)
    • Renaissance (http://www.academickids.com/encyclopedia/index.php/Renaissance)
    • Timelines (http://www.academickids.com/encyclopedia/index.php/Timelines)
    • United States (http://www.academickids.com/encyclopedia/index.php/United_States)
    • Wars (http://www.academickids.com/encyclopedia/index.php/Wars)
    • World History (http://www.academickids.com/encyclopedia/index.php/History_of_the_world)
  • Human Body (http://www.academickids.com/encyclopedia/index.php/Human_Body)
  • Mathematics (http://www.academickids.com/encyclopedia/index.php/Mathematics)
  • Reference (http://www.academickids.com/encyclopedia/index.php/Reference)
  • Science (http://www.academickids.com/encyclopedia/index.php/Science)
    • Animals (http://www.academickids.com/encyclopedia/index.php/Animals)
    • Aviation (http://www.academickids.com/encyclopedia/index.php/Aviation)
    • Dinosaurs (http://www.academickids.com/encyclopedia/index.php/Dinosaurs)
    • Earth (http://www.academickids.com/encyclopedia/index.php/Earth)
    • Inventions (http://www.academickids.com/encyclopedia/index.php/Inventions)
    • Physical Science (http://www.academickids.com/encyclopedia/index.php/Physical_Science)
    • Plants (http://www.academickids.com/encyclopedia/index.php/Plants)
    • Scientists (http://www.academickids.com/encyclopedia/index.php/Scientists)
  • Social Studies (http://www.academickids.com/encyclopedia/index.php/Social_Studies)
    • Anthropology (http://www.academickids.com/encyclopedia/index.php/Anthropology)
    • Economics (http://www.academickids.com/encyclopedia/index.php/Economics)
    • Government (http://www.academickids.com/encyclopedia/index.php/Government)
    • Religion (http://www.academickids.com/encyclopedia/index.php/Religion)
    • Holidays (http://www.academickids.com/encyclopedia/index.php/Holidays)
  • Space and Astronomy
    • Solar System (http://www.academickids.com/encyclopedia/index.php/Solar_System)
    • Planets (http://www.academickids.com/encyclopedia/index.php/Planets)
  • Sports (http://www.academickids.com/encyclopedia/index.php/Sports)
  • Timelines (http://www.academickids.com/encyclopedia/index.php/Timelines)
  • Weather (http://www.academickids.com/encyclopedia/index.php/Weather)
  • US States (http://www.academickids.com/encyclopedia/index.php/US_States)

Information

  • Home Page (http://academickids.com/encyclopedia/index.php)
  • Contact Us (http://www.academickids.com/encyclopedia/index.php/Contactus)

  • Clip Art (http://classroomclipart.com)
Toolbox
Personal tools