Seemingly...i think....
Gradually, it is difficult to understand JAVA for me.
this system doesn't have ability to use JAPANESE.
i don't make clear this disability.
Maybe,i think,with OS.
so i state in ENGLISH on this entry.
In the end of this entry, there are One of the JAVA source samples i learn today.
so....
"What this JAVA source sample DISPLAY? and MEAN?"
the "kc-net Blog viewer"( they are a narrow circle of members...i think...)!! Please ANSWER this question!!

====SAMPLE====
import java.awt.*;
import java.awt.event.*;
import java.applet.*;
import javax.swing.*;
import java.text.DecimalFormat;
public class MaxValue extends JApplet
{
public void init(){
setSize(500,400);
setBackground(Color.cyan);
}
public void paint (Graphics g)
{
byte largestByte = Byte.MAX_VALUE;
short largestShort = Short.MAX_VALUE;
int largestInteger = Integer.MAX_VALUE;
long largestLong = Long.MAX_VALUE;
float largestFloat = Float.MAX_VALUE;
double largestDouble = Double.MAX_VALUE;
char aChar = 'S';
boolean aBoolean = true;
g.setColor(Color.red);
g.drawString("The largest byte value is "+ largestByte,100,50);
g.drawString("The largest short value is "+ largestShort,100,70);
g.drawString("The largest integer value is "+ largestInteger,100,90);
g.drawString("The largest long value is "+ largestLong,100,110);
g.drawString("The largest float value is "+ largestFloat,100,130);
g.drawString("The largest double value is "+ largestDouble,100,150);
if(Character.isUpperCase(aChar))
{
g.drawString("The character "+ aChar + " is upper case.",100,170);}
else{
g.drawString("The character "+ aChar + " is lower case.",100,170);
}
g.drawString("The value of aBoolean is "+ aBoolean,100,190);
}
}