码迷,mamicode.com
首页 > 编程语言 > 详细

java学习笔记day03

时间:2014-10-09 02:24:47      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   ar   java   for   sp   div   

1.二维数组,即一维护
 

int[][] arr1 = new int[3][2];
  int[][] arr2 ={{2,4,3,6,22,7},{3,6,8,9},{10,13,24,5}};
  public static void showArray(int arr[][]){
        for(int x=0;x<arr.length;x++){
            for(int y=0;y<arr[x].length;y++){
                System.out.println(arr[x][y]);
            }
        }
    }

2.封装:程序中的一种体现,通过将类中的成员变量私有化(private),通过对外提供方法(get/set),对该变量进行访问。  变量私有,只有在本类范围内有效。

3.进制转换:

/*
    用于进制转换的函数
    */
    private static void trans(int num,int base,int offset){
        char[] chs ={‘0‘,‘1‘,‘2‘,‘3‘,
                     ‘4‘,‘5‘,‘6‘,‘7‘,
                     ‘8‘,‘9‘,‘A‘,‘B‘,
                     ‘C‘,‘D‘,‘E‘,‘F‘};
        char[] arr = new char[32];

        int pos = arr.length;
        while(num!=0){
            int temp = num & base;
            arr[--pos] = chs[temp];
            num = num >>> offset;
        }
        for(int x = pos; x<arr.length; x++){
            System.out.println(arr[x]);

        }
        System.out.println();
    }

 

java学习笔记day03

标签:style   blog   color   os   ar   java   for   sp   div   

原文地址:http://www.cnblogs.com/luihengk/p/4012036.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!