首頁  >  文章  >  Java  >  java中靠什麼實現指標的功能

java中靠什麼實現指標的功能

(*-*)浩
(*-*)浩原創
2019-05-28 09:16:454639瀏覽

首先來看什麼是C語言中的指針,字面上理解就是一個類似實現定位功能的結構。指標最重要的功能,就是實現回呼函數,所謂回呼函數,就是指讓函數先在某處註冊,而它將在稍後某個需要的時候被呼叫。回呼函數一般用於截獲訊息,取得系統資訊或處理非同步事件。

java中靠什麼實現指標的功能

如何實作類似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中靠什麼實現指標的功能的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn