您好,登錄后才能下訂單哦!
小編給大家分享一下java中如何實現指針的功能,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
首先來看一下什么是C語言中的指針,字面上理解就是一個類似實現定位功能的結構。指針最重要的功能,就是實現回調函數,所謂回調函數,就是指讓函數先在某處注冊,而它將在稍后某個需要的時候被調用。回調函數一般用于截獲消息,獲取系統信息或處理異步事件。
如何實現類似于C語言中函數指針的功能
在Java語言中沒有指針的概念,可以利用接口與類實現同樣的效果,應先定義一個接口,然后在接口中聲明要調用的方法,接著實現這個接口(不同的功能實現,例如一個升序排列,一個降序排序),最后把這個實現類的一個對象作為參數給調用程序,調動程序通過這個參數來調用指定的函數。
具體實現如下:
interface IntCompare { public int cmp(int a,int b); } class Cmp1 implements IntCompare { public int cmp(int a,int b) { if(a>b) return 1; else if(a<b) return -1; else return 0; } } class Cmp2 implements IntCompare { public int cmp(int a,int b) { if(a>b) return -1; else if(a<b) return 1; else return 0; } } class HelloWorld { public static void main(String[] args) { int[] array1 = {7,3,19,40,4,7,1}; insertSort(array1,new Cmp1()); System.out.println("升序排列"); for(int i=0;i<array1.length;i++) { System.out.print(array1[i]+" "); } System.out.println(); int[] array2 = {7,3,19,40,4,7,1}; insertSort(array2,new Cmp2()); System.out.println("降序排列"); for(int i =0;i<array2.length;i++) { System.out.print(array2[i]+" "); } } public static void insertSort(int[] a,IntCompare cmp) { if(a!=null) { for(int i=1;i<a.length;i++) { int temp = a[i],j=i; if(cmp.cmp(a[j-1], temp)==1) { while(j>=1&&cmp.cmp(a[j-1],temp)==1) { a[j] = a[j-1]; j--; } } a[j] = temp; } for(int i=1;i<a.length;i++) { int temp = a[i]; int j = i-1; while(j>=0&&cmp.cmp(a[j], temp)==1) { a[j+1] = a[j]; j--; } a[j+1] = temp; } } } }
以上是java中如何實現指針的功能的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。