기본 데이터 유형 및 참조 유형의 초기 값
1584 단어 java 기초
package com.array;
/**
* @Description
* @author FuJianyong
* 2015-1-22 10:31:53
*/
public class ArrayTest {
ArrayTest at;
String str;
byte bt;
short s;
int i;
long l;
float f;
double d;
char c;
boolean b;
/**
*
*/
public void testInitialize() {
System.out.println(str+" "+bt+" "+s+" "+i+" "+l+" "+f+" "+d+" "+c+" "+b+" ");
}
ArrayTest[] atA = new ArrayTest[1];
String[] strA = new String[1];
byte[] btA = new byte[1];
short[] sA = new short[1];;
int[] iA = new int[1];;
long[] lA = new long[1];;
float[] fA = new float[1];;
double[] dA = new double[1];;
char[] cA = new char[1];;
boolean[] bA = new boolean[1];;
/**
*
*/
public void testInitializeArray() {
System.out.println(strA[0]+" "+btA[0]+" "+sA[0]+" "+iA[0]+" "+lA[0]+" "+fA[0]
+" "+dA[0]+" "+cA[0]+" "+bA[0]+" ");
}
/**
* test
* @param args
* output
* null 0 0 0 0 0.0 0.0 false
*/
public static void main(String[] args) {
ArrayTest at = new ArrayTest();
at.testInitialize();
at.testInitializeArray();
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Java 네트워크 프로그래밍의 UDP 서버 및 클라이언트 프로그램서버: 클라이언트: UDP: 클라이언트를 열어 데이터를 받을 때까지 기다린 다음 서버를 열어 데이터를 보냅니다....
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.