logic iterate 巢狀實現

2021-08-25 19:12:34 字數 1644 閱讀 8386

標記用於在頁面中建立乙個迴圈,以此來遍歷如陣列、collection、map這樣的物件。該標記的功能強大,在struts應用的頁面中經常使用到。

1、對陣列進行迴圈遍歷

使用標記可以用於遍歷陣列,以下是一段示例**:

<%

string testarray=;

pagecontext.setattribute("test",testarray);

%>

在上面的**中,首先定義了乙個字串陣列,並為其初始化。接著,將該陣列存入pagecontext物件中,命名為test1。然後使用標記的name屬性指定了該陣列,並使用id來引用它,同時使用標記來將其顯示出來。其結果為:

str1

str2

str3

另外,還可以通過length屬性來指定輸出元素的個數。如下面的**:

其中length屬性指定了輸出元素的個數,offset屬性指定了從第幾個元素開始輸出,如此處為1,則表示從第二個元素開始輸出。所以該**的執行結果應當輸出:

str2

str3

另外,該標記還有乙個indexid屬性,它指定乙個變數存放當前集合中正被訪問的元素的序號,如:

:其顯示結果為:

1:str2

2:str3

2、對hashmap進行迴圈遍歷

<%

hashmap countries=new hashmap();

countries.put("country1","中國");

countries.put("country2","美國");

countries.put("country3","英國");

countries.put("country4","法國");

countries.put("country5","德國");

pagecontext.setattribute("countries",countries);

%>

:在bean:write中通過property的key和value分別獲得haspmap物件的鍵和值。其顯示結果為:

country5:德國

country3:英國

country2:美國

country4:法國

country1:中國

由結果可看出,它並未按新增的順序將其顯示出來。這是因為haspmap是無序存放的。

3、巢狀遍歷

<%

string colors=;

string countries1=;

string persons=;

arraylist list2=new arraylist();

list2.add(colors);

list2.add(countries1);

list2.add(persons);

pagecontext.setattribute("list2",list2);

%>

執行效果:

0 red green blue

1 中國 美國 法國

2 喬丹 布希 柯林頓

list 是你要遍例的物件 it是list裡面的元素的型別 ,還有個offset屬性,是用來表示起始位置的,比如,offset=「1」從第二位開始遍歷出值,offset=「0」是預設值

vue setInterval的巢狀例項

setinterval 方法可按照指定的週期 以毫秒計 來呼叫函式或計算表示式。音訊 audio timeupdate updatetime controls controls hidden 您的瀏覽器不支援 audio 標籤。audio date 2019年11月4日15 26 11 author...

linux命令巢狀例項 五

8 用 小於號來重定向 儲存資訊 覆蓋原檔案資訊。例如 a用 小於號來重定向 root localhost apache tomcat cd cd cd root localhost 桌面 b用 小於號來重儲存資訊 cat apache tomcat logs catalina.2017 08 22...

Python基礎 之for迴圈巢狀例項

python基礎 之for迴圈巢狀實 一 在控制台中輸出以下字元樣式 例 for r in range 3 0 1 2 for c in range 5 01234 01234 01234 print end 在一行輸出 print 換行二 在控制台中輸出以下字元樣式 for r in range ...