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 18.4. 2005 um 22:40:19 Uhr schrieb pars@home über Java
am 21.2. 2003 um 16:07:37 Uhr schrieb mod über Java
am 18.7. 2002 um 22:02:40 Uhr schrieb rh ü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«.
hinkelchen schrieb am 8.12. 2000 um 14:58:19 Uhr zu
Bewertung: 1 Punkt(e)
public class Sets_1 {
public static void main(String[] args) {
// Define three variables representing empty sets
int set1 = 0;
int set2 = 0;
int set3 = 0;
// Check if set1 is empty and print result
if (set1 == 0) System.out.println(»leer«);
// Insert element 15 into set1
set1 = set1 | (1<<15);
System.out.println (set1+» set1 15«);
// Insert element 5 into set1
set1 = set1 | (1<<5);
System.out.println (set1+» set1 5«);
// Check if set1 is empty and print result
if (set1 == 0) System.out.println(»leer«);
else System.out.println(»mindestens ein Element vorhanden«);
// Output the elements contained in set1
for (int i=0;i<32;i++){
int set1b;
set1b = set1;
set1b = set1 & (1<<i);
if (set1b != 0) System.out.println (i);
}
// Insert element 5 into set2
set2 = set2 | (1<<5);
// Insert element 8 into set2
set2 = set2 | (1<<8);
System.out.println (set2+» set2«);
System.out.println (set1+» set1«);
// Calculate set3 = union of set1 and set2
set3 = set1 | set2;
System.out.println (set3+» set3«);
// Output the elements contained in set3
for (int i=0;i<32;i++){
set3 = set3 & (1<<i);
if (set3 !=0) System.out.println(i);
}
// Calculate set3 = intersection of set1 and set2
set3 = set1 | set2;
// Output the elements contained in set3
for (int i=0;i<32;i++){
set3 = set3 & (1<<i);
if (set3 !=0) System.out.println(i);
}
// Calculate set3 = difference of set1 and set2 (i.e. set1 \ set2)
set3 = set1 ^ set2;
// Output the elements contained in set3
for (int i=0;i<32;i++){
set3 = set3 & (1<<i);
if (set3 !=0) System.out.println(i);
}
}
}
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>«);
}
}
// -->