真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

java定義受限制類型參數(shù)的方法示例

小編給大家分享一下java定義受限制類型參數(shù)的方法示例,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

從策劃到設(shè)計制作,每一步都追求做到細膩,制作可持續(xù)發(fā)展的企業(yè)網(wǎng)站。為客戶提供成都網(wǎng)站設(shè)計、網(wǎng)站制作、外貿(mào)營銷網(wǎng)站建設(shè)、網(wǎng)站策劃、網(wǎng)頁設(shè)計、域名注冊、網(wǎng)頁空間、網(wǎng)絡(luò)營銷、VI設(shè)計、 網(wǎng)站改版、漏洞修補等服務(wù)。為客戶提供更好的一站式互聯(lián)網(wǎng)解決方案,以客戶的口碑塑造優(yōu)易品牌,攜手廣大客戶,共同發(fā)展進步。

有時您可能想限制可以在參數(shù)化類型中用作類型參數(shù)的類型。 例如,對數(shù)字進行操作的方法可能只希望接受Number或其子類的實例。 這就是有界類型參數(shù)的用途。

受限制參數(shù)類型的方法示例

要聲明有界類型參數(shù),請列出類型參數(shù)的名稱,后跟extends關(guān)鍵字,然后是其上限,在本例中為Number

請注意,在這種情況下,extends通常用于表示“擴展”(如在類中)或“實現(xiàn)”(如在接口中)。

package generics;

/**
 * 定義受限制的方法
 * 
 * @author psdxdgK1DT
 *
 */
public class Box {

	private T t;

	public void set(T t) {
		this.t = t;
	}

	public T get() {
		return t;
	}
/**
	 * 通過修改我們的通用泛型方法以包含此有界類型參數(shù),現(xiàn)在編譯將失敗,因為我們對inspect的調(diào)用仍包含String:
	 * By modifying our generic method to include this bounded type parameter
	 * compilation will now fail, since our invocation of inspect still includes a String:
	 * inspect:單詞:檢查
	 * @param 
	 * @param u
	 */
	public  void inspect(U u) {
		System.out.println("T:" + t.getClass().getName());
		System.out.println("U:" + u.getClass().getName());
	}

	public static void main(String[] args) {
		Box integerBox = new Box();
		integerBox.set(new Integer("some text"));
		integerBox.inspect("some test");這里會出現(xiàn)預(yù)編譯錯誤

		integerBox.inspect(10);
	}
}

在顯示器上會出現(xiàn)紅色的波浪線表示編譯錯誤

java定義受限制類型參數(shù)的方法示例

如果強行編譯則會報錯:

program run result:

Exception in thread “main” java.lang.Error: Unresolved compilation problem: The method inspect(U) in the type Box is not applicable for the arguments (String)

at generics.Box.main(Box.java:36)

譯文:

未解決的編譯錯誤

Box類的inspect(U)方法不可應(yīng)用于(String)類型參數(shù)\

使用受限類型參的類可調(diào)用受限邊界方法

除了限制可用于實例化泛型類型的類型外,有界類型參數(shù)還允許您調(diào)用在邊界中定義的方法:

//使用受限類型參數(shù)的類
public class NaturalNumber {

  private T n;
  public NaturalNumber(T n) { this.n = n; }

  public boolean isEven() {
    return n.intValue() % 2 == 0;
  }

  // ...

isEven方法通過n調(diào)用Integer類中定義的intValue方法。

多重受限邊界(Multiple Bounds)

The preceding example illustrates the use of a type parameter with a single bound, but a type parameter can have multiple bounds:

A type variable with multiple bounds is a subtype of all the types listed in the bound. If one of the bounds is a class, it must be specified first. For example:

Class A { /* … / } interface B { / … / } interface C { / … */ }

class D { /* … */ } If bound A is not specified first, you get a compile-time error:

class D { /* … */ } // compile-time error

泛型算法

有界類型參數(shù)是實現(xiàn)泛型算法的關(guān)鍵。考慮下面的方法,該方法計算數(shù)組T[]中大于指定元素elem的元素數(shù)。

public static  int countGreaterThan(T[] anArray, T elem) {
  int count = 0;
  for (T e : anArray)
    if (e > elem) // compiler error
      ++count;
  return count;
}
The implementation of the method is straightforward,
but it does not compile because the greater than operator (>) applies only to primitive types
such as short, int, double, long, float, byte, and char. 
You cannot use the > operator to compare objects. To fix the problem, use a type parameter
bounded by the Comparable interface:

public interface Comparable {
  public int compareTo(T o);
}
The resulting code will be:

public static > int countGreaterThan(T[] anArray, T elem) {
  int count = 0;
  for (T e : anArray)
  //因為這里的T是受限制的類型參數(shù),實現(xiàn)了Comparable接口,于是可以使用接口的方法compareTo
    if (e.compareTo(elem) > 0)
      ++count;
  return count;
}

以上是java定義受限制類型參數(shù)的方法示例的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


網(wǎng)站標題:java定義受限制類型參數(shù)的方法示例
文章來源:http://weahome.cn/article/pjsise.html

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部