Anzahl Assoziationen zu diesem Stichwort (einige Beispiele folgen unten) |
46, davon 45 (97,83%)
mit einer Bewertung über dem eingestellten Schwellwert (-3) und 16 positiv bewertete (34,78%) |
Durchschnittliche Textlänge |
728 Zeichen |
Durchschnittliche Bewertung |
0,304 Punkte, 17 Texte unbewertet.
Siehe auch: positiv bewertete Texte
|
Der erste Text |
am 12.11. 1999 um 14:39:54 Uhr schrieb Alvar
über Java |
Der neuste Text |
am 19.11. 2011 um 06:31:35 Uhr schrieb racle
über Java |
Einige noch nie bewertete Texte (insgesamt: 17) |
am 10.3. 2003 um 17:50:49 Uhr schrieb elfboi über Java
am 16.7. 2002 um 00:21:10 Uhr schrieb Bettina Bleifuß über Java
am 21.2. 2003 um 16:07:37 Uhr schrieb mod über Java
|
Heraklit schrieb am 31.5. 2000 um 16:16:07 Uhr zu
Bewertung: 5 Punkt(e)
Java ist eine objekt-orientierte Programmiersprache, ursprünglich von James Gosling bei Sun Microsystems entworfen. Damals noch für sogenannte Embedded Systems gedacht, wird sie nun häufig auf grossen Servern und teilweise auch auf Clients (als Applets) eingesetzt. Das besondere an Java ist die Plattformunabhängigkeit. Sie wird durch ein binäres Format erreicht, in das der Java Quellcode compiliert wird (Class Files). Diese Binaries werden auf der Zielplattform durch eine virtuelle Maschine interpretiert. Der Interpretationsvorgang hat ein Performanceproblem zur Folge, dass durch sogenannte Just - in - time - Compiler teilweise behoben werden kann. Sie übersetzen die plattformunabhängigen Binaries in optimierten Maschinencode.
Java wird stark von Sun Microsystems gepuscht, vor allem, um in den von Microsoft dominierten Desktopmarkt einzudringen. Das ist bisher nur teilweise gelungen. Das liegt einerseits an der Dominanz von Microsoft, andererseits an den offensichtlichen Schwächen von Java, wie mangelnde Performance, instabiles GUI (Swing), keine Templates (wie in C++), Implementierung der Garbage - Collection und keine echte Plattformunabhängigkeit. Der Slogan von Sun »Write Once, Runs Everywhere« wird häufig kolportiert mit »Write Once, Debug Everywhere«.
elfboi schrieb am 9.12. 2002 um 22:34:32 Uhr zu
Bewertung: 1 Punkt(e)
<SCRIPT language=»JavaScript«>
<!--
// This JavaScript takes today's conventional (Gregorian) date from the client
// system and displays the corresponding date from the Discordian Calendar as
// given on Page 0034 of Principia Discordia. Coded by JohnDouglas WaySide, KSC,
// of the JAH Cabal on 14-15 Aftermath, AM 3163. Revised 48 Aftermath, AM 3163.
// Permission granted to all Discordians and their ilk to use freely in
// propagating the Faith. Hail Eris!
// Note that the »Julian date« generated for dates after the last day of February
// in a leap year will be »short« by a day -- and won't be generated at all for
// February 29th itself (St. Tibb's Day in the Discordian calendar).
// Copyfree <X>1997-98 non sequitur productions / ErisX Web Design Collective.
// http://erisx.com -- »The Web HER Way«
// Mama made me do it. Honest.
function showDiscordianDate() {
var julian, i, disDate, disDay, disMonth, disYear;
currentDate = new Date();
var today = currentDate.getDate();
var currentMonth = currentDate.getMonth();
var currentYear = currentDate.getYear();
var extraDays = new Array(0,3,0,3,2,3,2,3,3,2,3,2);
var dDays = new Array(»Sweetmorn«,»Boomtime«,»Pungenday«,»Prickle-Prickle«,»Setting Orange«);
var dMonths = new Array(»Chaos«,»Discord«,»Confusion«,»Bureaucracy«,»Aftermath«);
document.writeln(»<DIV ALIGN='center'><STRONG>Today\'s Day and Date in the Discordian Calendar:</STRONG></DIV>«);
document.writeln(»<BR> «);
if((currentMonth==1)&&(today==29)) {
document.writeln(»<DIV ALIGN='center'> Today is St. Tibb\'s Day -- Many Happy Returns!</DIV>«);
}
else {
julian = currentMonth * 28;
for(i=0; i<=currentMonth; i++) {
julian+= extraDays[i];
}
julian+= today;
disDay = (julian - 1) % 5;
disDate = julian % 73;
disMonth = Math.floor(julian/73);
disYear = currentYear+3066;
document.writeln(»<DIV ALIGN='center'><BIG>«+dDays[disDay]+», Day «+disDate
+» of the Season of «+dMonths[disMonth]+», Anno Mung «+disYear+».</BIG></DIV>«);
}
}
// -->