Java(15)
-
Java variable_2_Primitive Data type
Data type In Java, there are different method of declaring variables for example, Integer Type Real Numbers Character Logic For each type, there are different mothods. For Interger type, byte bit range byte 1 8 -128~127 short 2 16 -32,768~32,767 int 4 32 -2,147,483,648~2,147,483,647 long 8 64 -2^63~2^63-1 For Real Numbers, byte bit range float 4 32 1.4x10^45~3.4x10^38 double 8 64 4.9x10^-324~1.8..
2020.12.30 -
Java variable_basic rule
Java has containers for storing data values which called containers. Each Variable can only contain one data type. For example, this typical type of variable shows the basic information: int num = 1; int: specific data type num: name of the variable =: Operator (which it would be shown later) 1: initial value Declaring variables does not directly mean equal as the symbol "=" shows, declaring var..
2020.12.28 -
Java란 무엇인가?
- 프로그램 및 개발을 할 수 있는 언어 중 하나이다. - java에도 다양한 종류가 있는데 자바 언어(Java Language), 자바 애플리케이션(Java Application), 자바 애플릿(Java Applet), JRE(Java Runtime Environment), 자바 가상 머신(Java Virtual Machine), 모바일용 자바(Java ME), 자바 웹 스타트(Java Web Start) 등이 존재한다. - Java가 다른 언어와 다른점은 특별한 운영채체나 하드웨어를 가리지 않는 다는 것이다. 따라서 단순히 컴파일러와 가상머신, 오라클과 같은 프로그램이 있다면 구동을 할 수 있다는 점이다. 또한 os에 따라 JVM(가상머신)이 달라 지기도 한다. (일반적인 프로그램은 프로그램 --> ..
2020.12.23