Code Explorer(代碼瀏覽器)是Delphi IDE的特性之一,它大受用戶的歡迎。正如其名所表示,Code Explorer用于快速瀏覽源代碼單元。Code Explorer通常位于Code Editor的左邊,如上圖所示。
Code Explorer顯示單元的所有類、函數(shù)、過程、變量和Uses列表。類節(jié)點(diǎn)擴(kuò)展開來顯示所有的屬性、變量、字段和某個(gè)類的方法。如下圖:
當(dāng)在Code Editor中切換單元時(shí),Code Explorer顯示的內(nèi)容頁隨之相應(yīng)地改變。
1、Code Explorer快捷菜單
【New】增加新變量、方法、函數(shù)或過程到單元中。還可以用于增加一個(gè)單元到uses列表中。
【Rename】更名一個(gè)標(biāo)識(shí)符(變量、方法、函數(shù)、過程等等)。
【View Editor】當(dāng)Code Explorer為泊位到Code Editor窗口時(shí),使Code Editor窗口處于最上層并顯示出來。
【Dockable】指定Code Explorer是否可以泊位
【Properties】打開Code Explorer的屬性窗口對(duì)話框(Explorer Options)。
2、使用Code Explorer增加代碼
要導(dǎo)航某個(gè)方法、函數(shù)或過程,只需在Code Explorer中雙擊其標(biāo)識(shí)符名,Code Editor就會(huì)跳到源文件中該方法所在位置。要定位類的數(shù)據(jù)字段或一個(gè)單元變量聲明,可在Code Explorer窗口中定位該變量標(biāo)識(shí)符并雙擊這個(gè)標(biāo)識(shí)符,Code Editor會(huì)顯示該變量的聲明。
可使用Code Explorer來增加方法和變量聲明到源文件中。比如說,要增加一個(gè)字段變量到類中,可從Code Explorer快捷菜單中選擇【New】菜單項(xiàng)并輸入要增加的變量聲明。
要增加一個(gè)整型變量X,可輸入以下內(nèi)容:
?
1 | X: integer; |
當(dāng)按下Enter鍵后,該變量就被增加到類中。
也可以簡單地增加方法到類中。下面練習(xí)來說明其過程。
1)開始一個(gè)新應(yīng)用程序,并切換到Code Editor窗口中。
2)用鼠標(biāo)右鍵點(diǎn)擊Code Explorer窗口中的TForm1節(jié)點(diǎn),并從快捷菜單中選擇【New】菜單項(xiàng)。
3)在Code Explorer窗口的編輯框中輸入以下代碼,并按Enter鍵結(jié)束。
?
1 | procedure Test; |
4)Delphi在TForm1類節(jié)點(diǎn)下增加了一個(gè)Public節(jié)點(diǎn),并且在Public節(jié)點(diǎn)下增加了Test過程。如下圖:
5)在TForm1節(jié)點(diǎn)上再次選擇【New】菜單項(xiàng), 在編輯框中輸入以下代碼,并按Enter鍵結(jié)束。
?
1 | function GetSomething: Byte; |
6)另外再插入一項(xiàng),如下:
?
1 | AVariable: integer; |
7)大家可能未注意到,在增加各個(gè)項(xiàng)的同時(shí),Delphi也在忙著修改該單元。
8)修改后的單元清單如下:
Code Explorer既是一個(gè)單元瀏覽器又是一個(gè)生產(chǎn)工具。當(dāng)用戶編寫代碼時(shí),可使用它來導(dǎo)航單元。但就這一目的而言,它極其有用。還可以用Code Explorer往單元中添加代碼。Code Explorer是一臺(tái)強(qiáng)大的“增效器”,使用方便也是其一大優(yōu)點(diǎn)。
3、Code Explorer選項(xiàng)
Environment Options對(duì)話框的Explorer頁面給出了Code Explorer的顯示選項(xiàng)(從主菜單選擇【Tools | Environment Options…】可調(diào)出該對(duì)話框),如上圖所示。
該頁面上的選項(xiàng)用于設(shè)定和控制Code Explorer的動(dòng)作和顯示信息的多少。有關(guān)更詳細(xì)的設(shè)定,請(qǐng)參看Delphi在線幫助。