java各种数据类型的数组元素的默认值
public class DataTypeDefaultValue {public static void main(String[] args) {// string类型数组的默认值null// 对于引用类型的属性的默认值是null,如String类型System.out.println("查看String类型中数组的默认值:");String[] str = new String[4];str[0] = "aa";str[1] = "bb";str[2] = "cc";for (int i = 0; i < 4; i++) {System.out.println(str[i]);}// 对于short,int,long,byte而言,创建数组的默认值是0System.out.println("查看int类型数组的默认值:");int[] score = new int[4];score[0] = 90;score[1] = 89;score[2] = 34;for (int i = 0; i < score.length; i++) {System.out.println(score[i]);}System.out.println("查看short类型数组的默认值:");short[] score1 = new short[4];score1[0] = 90;for (int i = 0; i < score1.length; i++) {System.out.println(score1[i]);}System.out.println("查看long类型数组的默认值:");long[] score2 = new long[4];score2[0] = 90;for (int i = 0; i < score2.length; i++) {System.out.println(score2[i]);}System.out.println("查看byte类型数组的默认值:");byte[] score3 = new byte[4];score3[0] = 90;for (int i = 0; i < score3.length; i++) {System.out.println(score3[i]);}// 对于float double而言,默认值是0.0System.out.println("查看float类型数组的默认值:");float[] score4 = new float[4];score4[0] = 23;for (int i = 0; i < score4.length; i++) {System.out.println(score4[i]);}System.out.println("查看double类型数组的默认值:");double[] score5 = new double[4];score5[0] = 45;for (int i = 0; i < score5.length; i++) {System.out.println(score5[i]);}// 对于char类型// char类型数组的默认值是空格System.out.println("查看char类型数组的默认值:");char[] ch = new char[4];ch[0] = 'p';for (int i = 0; i < ch.length; i++) {System.out.println(ch[i]);}// 对于boolean类型的数组默认值// boolean类型数组的默认值是falseSystem.out.println("查看boolean数组的默认值:");boolean[] b = new boolean[4];b[0] = true;for (int i = 0; i < b.length; i++) {System.out.println(b[i]);}/// 引用类型数组的默认值是nullclass Person {}System.out.println("查看引用类型的数组默认值:");Person[] p = new Person[4];for (int i = 0; i < p.length; i++) {System.out.println(p[i]);}}}
运行结果:
查看String类型中数组的默认值:aabbccnull查看int类型数组的默认值:9089340查看short类型数组的默认值:90000查看long类型数组的默认值:90000查看byte类型数组的默认值:90000查看float类型数组的默认值:23.00.00.00.0查看double类型数组的默认值:45.00.00.00.0查看char类型数组的默认值:p
java各种数据类型的数组元素的默认值的更多相关文章
- Java 创建数组的方式, 以及各种类型数组元素的默认值
①创建数组的方式3种 ①第1种方法 public class MyTest { public static void main(String[] args){ //method 1 int[] arr ...
- C++:map用法及元素的默认值
C++:map用法 一.map基本用法 键值对 第一个参数为键的类型,第二个参数为值的类型. 源代码 #include <iostream> #include <string> ...
- 关于Java读取mysql中date类型字段默认值'0000-00-00'的问题
今天在做项目过程中,查询一个表中数据时总碰到这个问题: java.sql.SQLException:Value '0000-00-00' can not be represented as ...
- 【转】MySQL datetime数据类型设置当前时间为默认值
转自http://blog.csdn.net/u014694759/article/details/30295285 方法一: MySQL目前不支持列的Default 为函数的形式,如达到你某列的默认 ...
- (转)日期类型的input元素设置默认值为当天
原文地址 html5的form元素对日期时间有丰富的支持 <input type="date"> <input type="time"> ...
- 日期类型的input元素设置默认值为当天
html文件:<input name="" type="date" value="" id="datePicker" ...
- (Java)怎么去掉字符串数组中重复的值?
String fdbs = "WXB,WXA,FDA,WXB"; String[] str = fdbs.split(","); Set set = new H ...
- c#中的数据类型简介(数组)
c#中的数据类型简介(数组) 数组定义 可以将数组看成相同数据类型的一组或多组数据,包括一维数组,多维数组和交错数组. 数值数组元素的默认值设置为零,而引用元素的默认值设置为 null. 交错数组是指 ...
- Java基础知识笔记第二章:基本数据类型与数组
标识符和关键字 标识符: 1:字母,数字,下划线,美元符号 2.不能以数字开头 3.标识符不能是:true false null(尽管true false null不是java的关键字 ...
随机推荐
- To B Vs To C
谈谈 To B 业务的难点https://tangjie.me/blog/259.html
- idea标注yml资源配置文件
- delphi ehLib 安装包下载及安装方法
1.下载安装包,这里提供一个百度云盘共享链接,D7-XE8都有:https://pan.baidu.com/s/1DTlxok4RiSmDokuabnGvQw2.添加环境变量,菜单"Tool ...
- 深度学习结合SLAM研究总结
博客转载自:https://blog.csdn.net/u010821666/article/details/78793225 原文标题:深度学习结合SLAM的研究思路/成果整理之 1. 深度学习跟S ...
- springdata 查询思路:基本的单表查询方法(id,sort) ---->较复杂的单表查询(注解方式,原生sql)--->实现继承类---->复杂的多表联合查询 onetomany
springdata 查询思路:基本的单表查询方法(id,sort) ---->较复杂的单表查询(注解方式,原生sql)--->实现继承类---->复杂的多表联合查询 onetoma ...
- codeforces510D
Fox And Jumping CodeForces - 510D Fox Ciel is playing a game. In this game there is an infinite long ...
- 高斯消元与行列式求值 part1
两道模板题,思路与算法却是相当经典. 先说最开始做的行列式求值,题目大致为给一个10*10的行列式,求其值 具体思路(一开始看到题我的思路): 1.暴算,把每种可能组合试一遍,求逆序数,做相应加减运算 ...
- 数据分析三剑客之Matplotlib
Matplotlib绘图和可视化 简介 我的前面两篇文章介绍了 Nimpy ,Pandas .今天来介绍一下Matplotlib. 简单来说,Matplotlib 是 Python 的一个绘图库.它包 ...
- Python--基础二
Python基础:字符串str & 列表list & 元组tuple & 字典dict & 集合set Python 基础 2 字符串 str 字符串是以单引号或双引号 ...
- 关于docker的基础教程
对于docker来说,详细参考如下博客 http://www.ruanyifeng.com/blog/2018/02/docker-tutorial.html