/**
* 註解的生命階段 1.原始檔(source) 2.class檔案(class) 3.記憶體中(runtime)
* retentionpolicy 是乙個列舉 一共就這三個值,用來表示註解的生命階段
* @override retentionpolicy.source
* @suppresswarnings retentionpolicy.source
* @deprecated retentionpolicy.runtime
* * elementtype 是乙個列舉 一共10個值(其中2個值是1.8加上的)
* 註解的作用域 :
* @author lh
* */
//元註解
@retention(retentionpolicy.class)
@target()
public @inte***ce itcastannotation
@itcastannotation
public class selfannotationtest
public class itcastproxyclass
}}
EnumSet的幾個例子
enumset 是乙個與列舉型別一起使用的專用 set 實現。列舉set中所有元素都必須來自單個列舉型別 即必須是同型別,且該型別是enum的子類 列舉型別在建立 set 時顯式或隱式地指定。列舉 set 在內部表示為位向量。此表示形式非常緊湊且高效。此類的空間和時間效能應該很好,足以用作傳統上基於...
儲存過程幾個例子
create or replace procedure peace if is cursor var c is select from grade begin for temp in var c loop if temp.course name os then dbms output.put lin...
閉包的幾個例子
記錄關於閉包的幾個例子,網上介紹閉包文章很多,暫時就不作解釋。1.作用域鏈的延伸var global 1 function outer return inner 必須return出去 inner 62.全域性函式佔位符var inner placeholder var f function inne...