为了账号安全,请及时绑定邮箱和手机立即绑定

整理Java基础知识--数组1

标签:
Java

Java 数组
数组是用来存储固定大小的同类型的元素
声明
数组必须先声明 才能使用
datatype[] arrayRefVar;//首选 []放在最后是为了C/C++的快速理解Java
char[] ch ;或者 char ch[];
char ch = new char[arraySize];
1.创建一个char数组 含有 arraySize元素
2.把新建 char数组的引用 赋值给变量ch
数组的使用

public class TestArr{    public static void main(String[] args){        double[] arr = {1.1,2.2,4.4,3.3};        for(double x:arr){            System.out.println(x);                  }//打印所有数组元素        double total = 0;        for(int i = 0;i < arr.length;++i){            total = total + arr[i];                     }        System.out.println("Total = " + total);        //计算并打印所有元素的和        double max = arr[0];        for(int i = 1;i < arr.length;++i ){            if (arr[i] > max) max = arr[i];        }        System.out.println("Max = " + max);    }   //查找并打印最大元素值}输出结果:1.12.24.43.3Total = 11.0Max = 4.4

数组作为函数的参数:

class A{    static void printArray(int[] array) {        for (int i = 0; i < array.length; i++) {            System.out.print(array[i] + " ");        }    }}public class TestA{  public static void main(String args[]){    int[] arr = {1, 2, 3, 4, 5, 6};    A.printArray(arr);  }}输出结果:1 2 3 4 5 6

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消