標籤是程式中特定的命名方法。
<>
標籤要放在要標註的內容前面,必須是乙個可執行語句。
作用:1)提高**可讀性
2)可以從當前內嵌**快中,規範的引用乙個來自外層塊中具有相同名稱的元素。
<>
declare
-- local variables here
counter integer := 0;
begin
declare
counter integer := 1;
begin
if counter = outerblock.counter then
dbms_output.put_line(counter);
end if;
end;
end;
declare
-- local variables here
begin
<>
for i in 1 .. 5 loop
if i > 3 then
exit loop_out;
end if;
<>
for j in 1 .. 5 loop
if j > i then
continue loop_in;
end if;
dbms_output.put_line('i=' || i || 'j=' || j);
end loop loop_in;
end loop loop_out;
end;
執行結果:
HTML中標籤的使用
標籤是 html 網頁源 中乙個重要的 html 標籤。meta 便簽用來描述乙個 html 標籤用於搜尋引擎優化 seo 它位於 html 文件中元素內,雖然它提供的資訊不可見,但它卻是文件最基本的元資訊。標籤中屬性可以分為必選屬性和可選的屬性。1.必選屬性 content屬性。該屬性是為了定義與...
mybatis批量操作中標籤的使用
mybatis使用,在進行批量操作時可以通過標籤,對傳入的集合引數進行遍歷。一 foreach標籤使用 1.批量更新 dao層設定傳入引數,與遍歷的引數名保持一致 integer batchupdate param stulist liststulist stulist item stu separ...
中 標籤 HTML中的標籤
講一下html中檔案標籤和文字標籤的使用 目的是學會使用,所以借助工具可以省好多時間 1.檔案標籤 構成html最基本的標籤 html html文件的根標籤 head 頭標籤。用於引入html文件的一些屬性。引入外部的一些資源 title 標題標籤 body 體標籤 html5中定義該文件是html...