基本数据类型和引用类型的初始值
编程技术  /  houtizong 发布于 3年前   158
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(); }}
请勿发布不友善或者负能量的内容。与人为善,比聪明更重要!
技术博客集 - 网站简介:
前后端技术:
后端基于Hyperf2.1框架开发,前端使用Bootstrap可视化布局系统生成
网站主要作用:
1.编程技术分享及讨论交流,内置聊天系统;
2.测试交流框架问题,比如:Hyperf、Laravel、TP、beego;
3.本站数据是基于大数据采集等爬虫技术为基础助力分享知识,如有侵权请发邮件到站长邮箱,站长会尽快处理;
4.站长邮箱:[email protected];
文章归档
文章标签
友情链接