版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
1、myeclipse 中英對照(含部分音標(biāo),旨在發(fā)音標(biāo)準)不想安裝漢化版軟件的福音myeclipse翻譯功能myeclipse是收費軟件。有很多實用的功能方便我等敲代碼。但是沒有系統(tǒng)的去了解其到底提供了那些功能。覺著應(yīng)該有的功能卻不知道怎么調(diào)出來用。尋覓吧(善用瀏覽器的 ctrl+f 哦,推薦chrome瀏覽器)。根據(jù)myeclipse 9.1的菜單逐個翻譯并配合google嘗試其作用:一。source s:s 源碼/注釋1.toggle comment(ctrl+7)toggle t()l套環(huán);切換;觸發(fā)器comment kment注釋;說明單行注釋用“/”注釋光標(biāo)所在行,或選中的多行(再次使
2、用是取消注釋)等同于 ctrl+/2.add block comment (ctrl+shift+/)block blk 塊多行注釋用“/* */”注釋選中區(qū)域3.remove block comment (ctrl+shift+)取消多行注釋(光標(biāo)要在注釋范圍內(nèi))4.generate element comment (alet+shift+j)generate denret產(chǎn)生element elmnt元素;單元成員注釋在類成員上方加注釋(光標(biāo)所在位置的成員)/排版代碼5.shift right向右縮進(光標(biāo)所在位置或選中的行)6.shift left向左縮進(光標(biāo)所在位置或選中的行)7.c
3、orrect indentation (ctrl+i)correct krekt合適的indentation ndente()n空格;縮進;凹痕格式化光標(biāo)所在行或選中區(qū)域8.format (ctrl+shift+f)格式化代碼(當(dāng)前文件中所有代碼)9.format element格式化光標(biāo)所在行或選中區(qū)域貌似和 ctrl+i 相同/導(dǎo)包10.add import (ctrl+shift+m)自動導(dǎo)入光標(biāo)所在位置所需要的包(單一)11.organize imports (ctrl+shift+o)organize rnaz組織自動導(dǎo)入所有需要的包,且去除多余或錯誤的包12.sort member
4、ssortsrt方法;種類;品質(zhì)membermembr部分;成員;部件按順序排列類的成員以public、private、protected、default的順序排列屬性13.clean upcleanklin打掃;清潔;整齊的可以把普通循環(huán)變成foreach循環(huán)(即增強for循環(huán))可以刪除從未使用的變量或方法可以重寫的方法上的添加 override可以給for、if等控制語句添加大括號等等功能/補全、構(gòu)建方法14.override/implement methodsoverride ,uvraid推翻;覆蓋;重寫implement implimnt, impliment實施;實現(xiàn)重寫或?qū)崿F(xiàn)父類
5、中的方法15.generate getters and settersgenerate denreit產(chǎn)生getter et獲得者setter set安裝者補全某屬性的get、set方法16.generate delegate methodsdelegate delit代表;指令;轉(zhuǎn)授類中屬性本身的所有方法。例如string類型的屬性,會列出trim()等方法17.generate tostring()重寫tostring方法,默認生成輸出所有屬性18.generate hashcode() and equals()hash h哈希;散列equal i:kwl等于重寫hashcode、equa
6、ls方法,默認包含所有屬性19.generate constructor using fieldsconstructor knstrkt 構(gòu)造函數(shù);構(gòu)造器;建造者field fi:ld 域創(chuàng)建構(gòu)造器,默認包含所有屬性20.generate constructors from superclass創(chuàng)建和父類同樣參數(shù)的構(gòu)造器并在構(gòu)造器中調(diào)用父類的構(gòu)造器/快速構(gòu)建代碼的模板們21.surround with (alt+shift+z)surround sraund圍繞;包圍1). try/catch blocktry trai 嘗試;努力;試圖catch kt 抓??;捕獲;捕捉block blk 塊
7、;街區(qū)把選中的區(qū)域用try/catch代碼塊圍繞起來2). configurate templatesconfigure knfi 安裝;是形成;配置template templit 模板;樣板設(shè)置一些模板如 try/catch 或 do/while22.externalize stringsexternalize ikst:nlaiz 客觀化讓字符串具體化把類中所有字符串存到一個“perties”文件中并匹配一個“messages.java”解析類然后類中是從解析類中得到字符串想到一個國際化的案例23.find broken externalized stringsb
8、roken brukn破碎的;壞掉的具體化壞掉的字符串未測試二。refactor rifkt 重構(gòu)/改變1.rename (alt+shift+r)rename ,ri:neim 重新命名重新命名選中名稱,同時更新調(diào)用處哦2.move (alt+shift+v)把屬性移動到另一個類中把類移動到另一個包中/抽3.change method signature (alt+shift+c)change teind 改變;交換signature signt署名;簽名;信號改變某方法的返回值類型、方法名、形參、拋出的異常等4.extract method (alt+shift+m)extract iks
9、trkt提取;抽取把選中代碼抽取成一個方法,返回值神馬的都會自動搞定哦5.extract local variable (alt+shift+l)local lukl 局部的;本地的variable vribl 可變的;變量把一個具體的值(字符串、數(shù)字)抽取成局部變量6.extract constantconstant knstnt 不變的;常量把一個變量抽取成大寫的常量7.inline (alt+shift+i)inline in,lain內(nèi)聯(lián)的;內(nèi)嵌合并行,例如: string s = hello; sysout(s);合并成 sysout(hello);/轉(zhuǎn)變8.convert loca
10、l variable to fieldconvert knv:t使轉(zhuǎn)變;轉(zhuǎn)換;改變把局部變量變成靜態(tài)成員變量(域變量),可選為常量9.convert anonymous class to nestedanonymous nnims匿名的,無名的nested nestid 嵌套的,內(nèi)裝的把一個匿名類轉(zhuǎn)換成內(nèi)部類10.move type to new file把一個內(nèi)部類放到一個.java文件中去/父類(接口)和子類交互11.extract superclass把選中的區(qū)域抽成超類(不能包含內(nèi)部類等)12.extract interface根據(jù)當(dāng)前類抽一個接口,并自動實現(xiàn)13.use supert
11、ype where possiblepossible psbl 可能的;合理的盡可能使用父類調(diào)用(多態(tài)形式)14.push downpush pu推動;增加;推行把基類中的東西放到子類中15.push up把子類中的東西抽成接口中的方法并實現(xiàn)或直接放到父類中/操作類16.extract class抽取普通類17.introduce parameter objectintroduce ,intrdju:s介紹;引進parameter prmit參數(shù)把三個或三個以上的參數(shù)抽取成一個類/操作成員18.introduce indirectionindirection ,indirekn間接;迂回;間接
12、取值把方法包裝(另外一個方法來調(diào)用此方法)19.introduce factory用方法返回一個實例(工廠模式)20.introduce parameter把方法中調(diào)用的屬性弄成方法的形參21.encapsulate fieldencapsulate inkpsleit 封裝;壓縮封裝屬性(未測試成功)/22.generalize declared typegeneralize denrlaiz 概括;推廣;泛化declared dikld公然的;公開宣布的功能未知23.infer generic type argumentsinfer inf:推斷generic dinerik 類的;一般的
13、;普通argument :jumnt 論證;變量功能未知/24.migrate jar filemigrate maireit移動;遷移功能未知25.create script功能未知26.apply scriptapply plai申請;應(yīng)用;運用功能未知27.historyhistory histri歷史功能未知三。navigatenvieit操縱;航行;駕駛/1.go intointo intu:到里2.go to1).back2).forwardforward f:wd 向前;前進3).up one levellevel levl 水平;等級4).type5).packagepacka
14、ge pkid 包;包裝6).resourceresource ris:s 資源7).previous member (ctrl+shift+up)previous pri:vjs 以前的;先前的member memb成員;構(gòu)件8).next member (ctrl+shift+down)9).matching bracket (ctrl+shift+p)matching mti相配的;匹配bracket brkit 托架;括號;支架找到對應(yīng)的括號3.open declaration (f3)declaration ,deklrein申報聲明轉(zhuǎn)到這貨聲明的地方4.open type hier
15、archy (f4)hierarchy hai,r:ki層級;分層;層次結(jié)構(gòu)會轉(zhuǎn)到“type hierarchy”視圖并顯示當(dāng)前類的繼承的和自身成員的層次結(jié)構(gòu)5.open call hierarchy (ctrl+alt+h)會轉(zhuǎn)到“call hierarchy”試圖并顯示所有關(guān)聯(lián)當(dāng)前東西的東西們?nèi)缫粋€成員被多少方法調(diào)用了都會列出來的6.open implementationimplementation ,implimentein實現(xiàn);實施;執(zhí)行7.open super implementation8.open attached javadoc (shift+f2)attached ttt附加
16、的;附上;附屬javadoc 文檔注釋;說明;文檔9.open maven pom (alt+shift+p)maven meivin內(nèi)行;專家pom project object model構(gòu)建項目用的(貌似強于ant)10.open type from maven/11.open type (ctrl+shift+t)用關(guān)鍵字尋找某個類,打開源碼12.open type in hierarchyhierarchy hai,r:ki 層級;等級制度用關(guān)鍵字查找某個類然后再“type hierarchy”試圖顯示其層級關(guān)系13.open resource (ctrl+shift+r)查找源碼(
17、項目中的各種文件)然后用對應(yīng)的試圖打開14.open spring bean/15.show in breadcrumb (alt+shift+b)breadcrumb bredkrm導(dǎo)航17.show in (alt+shift+w)在各種視圖中顯示當(dāng)前光標(biāo)所在的位置18.beans quick cross references (alt+shift+g)quick kwik 核心;快速的;迅速的cross kr:s十字;交叉reference refrns參考19.quick outline (ctrl+o)outline autlain 輪廓;大綱類的成員大綱20.quick type
18、hierarchy(ctrl+t)類的繼承體系/21.next annotation (ctrl+.)annotation ,nutein 注釋22.previous annotation (ctrl+,)previous pri:vjs 以前的;上一個/23.last edit location (ctrl+q)location lukein 位置;地點最后一個編輯的位置24.go to line (ctrl+l)到多少行去25.back (alt+left)上一個文件26.forward (alt+right)下一個文件四。searchs:t檢索;查找;搜尋/1.search(ctrl+h
19、)2.file3.java4.pointcut matchespoint pint要點;表明;指向;針尖cut kt 傷口;切;割;剪matches mt導(dǎo)火線;匹配切入點匹配?5.beans/6.test1).workspace (ctrl+alt+g)2).project3).file4).working set7.referencesreference refrns參考;引用8.declarationsdeclaration ,deklrein聲明;申報9.implementorsimplementor impliment實現(xiàn)者;角色;系統(tǒng)10.read accessaccess kse
20、s使用;進入;訪問;數(shù)據(jù)庫11.write access/12.occurrences in file (ctrl+shift+u)occurrence k:rns發(fā)生;事件;資源指引1).identifieridentifier aidentifai標(biāo)識符;鑒定人2).implementing methods3).throwing exceptionthrowing rui 投;拋exception iksepn 例外;異常4).method exits5).break/continue targetsbreak breik終止;打斷;斷開continue kntinju:繼續(xù);延續(xù);仍舊t
21、arget t:it目標(biāo);靶子13.referring testsrefer rif:涉及;委托;引用五。projectprdekt設(shè)計;計劃;項目;工程/1.open project2.close project/3.build all (ctrl+b)build bild構(gòu)建;建造4.build project5.build working set1).select working set6.clearn7.build automaticallyautomatically ,:tmtikli自動的/8.generate javadoc9.update all maven dependenc
22、iesdependencies dipendnsiz依賴/10.propertiesproperty prpti 性質(zhì);屬性六。myeclipse eclipseiklips月蝕;日蝕;使黯然失色 (針對sun公司)1.enhance rad project to work with myeclipseenhance inh:ns提高;加強;增強rad rapid application developmentrapid rpid快速的2.project capabilitiescapability ,keipbilti能力;性能;才能;容量1).add portlet capabilitie
23、sportlet p:tlt門戶組件;一種門戶導(dǎo)入的信息組件2).add jsf facelets capabilitesjsf java server faces j2ee中表示層技術(shù)server伺候著;服務(wù)器face feis臉;表面3).add hibernate capabiliteshibernate haibneit冬眠;過冬;避寒4).add jpa capabilitesjpa java persistence api oop方式操作db的標(biāo)準persistence psistns持續(xù);持久性5).add jsf capabilities6).add report capabi
24、litesreport rip:t報告;報表7).add rest web service capabilitesrest representational state transfer 表屬性狀態(tài)轉(zhuǎn)移,分布式超媒體系統(tǒng)架構(gòu)representational ,reprizenteinl表現(xiàn)的;代表性的;表達實體state steit國家;州;狀態(tài)transfer trnsf:轉(zhuǎn)讓;轉(zhuǎn)移8).add spring capabilites9).add struts capabilitesstrut strt支柱10).add javascript capabilities11).add jstl
25、librariesjstl jsp standard tag library jsp標(biāo)準標(biāo)簽庫library laibrri圖書館;文庫;程序庫12).add web project capabilities13).add icefaces capabilitiesicefaces 基于ajax的jsf開發(fā)框架14).add icefaces facelets capabilities3.enhance wtp projectwtp web tools platformplatformpltf:m平臺4.upgrade projects for myeclipse 9upgrade preid
26、升級/5.examples on-demandexample iz:mpl例子;舉例;榜樣demand dim:nd需求;查詢6.myeclipse configuration center7.subscription informationsubscription sbskripn捐獻;訂閱;認購information ,infmein信息;情報;知識8.preferencespreference prefrns首選項;偏愛,傾向9.installation summaryinstallation ,instlein安裝;設(shè)備summary smri摘要;簡易的/10.utilitiesut
27、ilities ju:tilitiz實用程序;實用工具1).maven4myeclipsemaven meivin內(nèi)行;專家(1).import jar to local repositoryrepository ripzitri貯藏室;存儲庫2).show heap statusheap hi:p堆;積累;堆積3).run garbage collectiongarbage :bid垃圾;無用信息collection klekn收集;募捐4).screen capturescreen skri:n屏幕capture kpt俘虜;捕獲;捕捉(1).capture (ctrl+alt+inser
28、t)(2).settings11.supportsupport sp:t支持;配角;支架1).faqfaq frequently asked questions 常見問題與解答 在線幫助形式frequently fri:kwntli頻繁的;經(jīng)常的2).educational materialeducational ,edju:keinl 教育的material mtiril 重要的;肉體的;材料3).search the support forumsforum f:rm論壇七。run/1.run (ctrl+f11)2.debug (f11)debug di:b調(diào)試;排錯;改正有毛病的部分3.
29、profileprofile prufail側(cè)面;輪廓;外形/4.profile history1).eclipse application5.profile asas z 隨著;如同;和。一樣1).java appletapplet plt小程序2).java applicationapplication ,plikein應(yīng)用;申請;應(yīng)用程序3).myeclipse server application6.profile configurationsconfiguration kn,fijurein配置;結(jié)構(gòu);外形7.run history1).eclipse application2).f
30、irefox - internal serverfirefox faif:ks火狐瀏覽器internal int:nl國內(nèi);內(nèi)部;內(nèi)存3).internet explorer - internal serverinternet intnet因特網(wǎng); 互連 網(wǎng)explorer ikspl:r探測器;探險家;資源管理器8.run as1).java applet (alt+shift+x,a)2).java application (alt+shift+x,j)3).myeclipse server application9.run configurations/10.debug history1
31、).eclipse application2).firefox - internal server3).internet explorer - internal server11.debug as1).java applet (alt+shift+d,a)2).java application (alt+shift+d,j)3).myeclipse server application12.debug configurations/13.add java exception breakpointbreakpoint breikpint斷點14.add class load breakpoint
32、/15.all referencesreference refrns參考;引用16.all instances (ctrl+shift+n)instance instns實例17.instance countcount kaunt計算;數(shù);有價值18.watchwatch wt, w:t觀察;注釋;表19.inspect (ctrl+shift+i)inspect inspekt檢查;審核20.display (ctrl+shift+d)display ,displei顯示;炫耀;顯示器21.execute (ctrl+u)execute eksikju:t實行;執(zhí)行;處死22.forrce
33、return (alt+shift+f)force f:s力量;強迫return rit:n返回;報答;歸還23.step into selectionstep step步;步驟;逐步into intu:到。里;向內(nèi)selection silekn 選擇;挑選24.external toolsexternal ikst:nl 外部的;表面1).(no launch history)launch l:nt開始;發(fā)射;發(fā)起2).run as(1).none applicationnone nn沒有人;一個也沒有;取消選取3).external tools configurations4).orga
34、nize favoritesorganize :naiz組織;整理favorites feivrits收藏夾;偏愛八。window1.new window2.new editoreditor edit編者;作家;主筆3.open perspectiveperspective pspektiv 透視圖;遠點;遠景4.show viewview vju:觀察;事業(yè);意見5.customize perspectivecustomize kstmaiz 定做;自定義6.save perspective as7.reset perspective8.close perspective9.close all perspectives10.navigationnavigation ,nviein導(dǎo)航;導(dǎo)引;漫游/1).show system menu (alt+-)menu menju:菜單;菜譜2).show view menu (ctrl+f10)3).quick access (ctrl+3)quick kwik核心;快速access kses使用;訪問;進入/4).maximi
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2024融資租賃合同書之公寓租賃合同
- 2024年度監(jiān)理工程師職責(zé)履行合同
- 2024年中介參與下的二手房買賣定金合同
- 2024年度軟件開發(fā)與維護技術(shù)服務(wù)合同
- 2024年建筑工地瓦工承包合同
- 商品房購房合同協(xié)議書
- 技術(shù)合同 技術(shù)許可合同樣本
- 2024某大學(xué)人文社科科研項目合同書
- 2024借名購房合同協(xié)議范本
- 2024年離婚協(xié)議書格式要求
- 房地產(chǎn)行業(yè)營銷策劃培訓(xùn)講座
- 安保方案模板
- 體育室內(nèi)課《籃球ppt課件》
- 安裝培訓(xùn)方案
- 2023邊緣物聯(lián)代理技術(shù)要求
- 航空航天類專業(yè)大學(xué)生職業(yè)生涯規(guī)劃書
- 餐廳小票打印模板
- 水稻栽培技術(shù)-水稻常規(guī)栽培技術(shù)
- 常見營養(yǎng)相關(guān)慢性疾病的營養(yǎng)指導(dǎo)
- 標(biāo)準報價單模板(二)
- 《mc入門教程》課件
評論
0/150
提交評論