From 2bc9af5b7f422701ea0c23d793ea9feb49c456ef Mon Sep 17 00:00:00 2001 From: lee_spring Date: Mon, 20 May 2024 19:55:41 +0800 Subject: [PATCH] =?UTF-8?q?1.=E4=BF=AE=E6=94=B9=E5=BA=94=E7=94=A8=E9=85=8D?= =?UTF-8?q?=E8=89=B2=EF=BC=8C=E5=88=A0=E6=8E=89=E6=97=A0=E7=94=A8=E7=9A=84?= =?UTF-8?q?=E4=BB=A3=E7=A0=81=E5=92=8C=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/src/main/AndroidManifest.xml | 5 - .../com/example/wordunlock/MainActivity.kt | 56 +- .../example/wordunlock/WordUnlockService.kt | 8 +- .../main/res/color/custom_primary_color.xml | 2 +- app/src/main/res/raw/sixlevel.json | 8882 ----------------- app/src/main/res/values/arrays.xml | 6 +- app/src/main/res/values/styles.xml | 5 +- 7 files changed, 29 insertions(+), 8935 deletions(-) delete mode 100644 app/src/main/res/raw/sixlevel.json diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index a4de281..36be8d3 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -26,11 +26,6 @@ android:supportsRtl="true" android:theme="@style/Theme.WordUnlock" tools:targetApi="31"> - + dialog.dismiss() + openAccessibilitySettings() + } + .setCancelable(false) // 避免用户点击外部关闭而不做处理 + .show() + } bottomNavView.setupWithNavController(navController) + // 检查并请求 SYSTEM_ALERT_WINDOW 权限 if (!Settings.canDrawOverlays(this)) { val intent = Intent(Settings.ACTION_MANAGE_OVERLAY_PERMISSION, @@ -97,7 +113,7 @@ class MainActivity : AppCompatActivity() { // 检查权限是否已授予 if (Settings.canDrawOverlays(this)) { // 权限已授予,执行相关操作 - val intent = Intent(this, WordUnlockForegroundService::class.java) + val intent = Intent(this, WordUnlockService::class.java) startService(intent) } else { // 权限未授予,提示用户或执行其他操作 @@ -106,11 +122,6 @@ class MainActivity : AppCompatActivity() { } } - fun getRawFileNames(context: Context): List { - val rawClass = R.raw::class.java - return rawClass.fields.map { it.name } - } - //} override fun onCreateOptionsMenu(menu: Menu): Boolean { // Inflate the menu; this adds items to the action bar if it is present. @@ -130,38 +141,7 @@ class MainActivity : AppCompatActivity() { override fun onResume() { super.onResume() - // 在Activity变为可见时检查辅助功能状态 - if (!isAccessibilityServiceEnabled()) { - // 如果辅助功能未开启,在这里处理逻辑,比如弹窗提示或直接finish() - // 注意:此处处理逻辑需谨慎,避免无限循环或用户体验不佳的情况 - // 示例代码可能需要根据实际情况调整 - AlertDialog.Builder(this) - .setTitle("辅助功能未开启") - .setMessage("请确保辅助功能已开启以正常使用应用。") - .setPositiveButton("前往设置") { dialog, _ -> - dialog.dismiss() - openAccessibilitySettings() - } - .setCancelable(false) // 避免用户点击外部关闭而不做处理 - .show() - } else { - // 辅助功能已开启,执行其他逻辑 - //setContentView(R.layout.activity_main) - val navController = findNavController(R.id.frame_layout_container) - val bottomNavView = findViewById(R.id.bottom_nav_view) - bottomNavView.setupWithNavController(navController) - // val fileList = assets.list("raw") - /*val raw_read_string = applicationContext.resources.openRawResource(R.raw.sixlevel).bufferedReader().use{ - it.readText() - }*/ - /*recyclerView = this.findViewById(R.id.recycler_view) - val layoutManager = LinearLayoutManager(this) - recyclerView.layoutManager = layoutManager - - val fileNames = getRawFileNames(this) - jsonFileListAdapter = JsonFileListAdapter(this, fileNames) - recyclerView.adapter = jsonFileListAdapter*/ - } + } } diff --git a/app/src/main/java/com/example/wordunlock/WordUnlockService.kt b/app/src/main/java/com/example/wordunlock/WordUnlockService.kt index 1f59b6c..996a902 100644 --- a/app/src/main/java/com/example/wordunlock/WordUnlockService.kt +++ b/app/src/main/java/com/example/wordunlock/WordUnlockService.kt @@ -128,9 +128,11 @@ class WordUnlockService : AccessibilityService() { val intent = Intent(this, WordUnlockForegroundService::class.java) val randomWordDefinition = getRandomWordDefinitionFromJson(this) randomWordDefinition?.let { - intent.putExtra("wordDefinition", it) // 传递单词数据 - intent.flags = Intent.FLAG_ACTIVITY_NEW_TASK - startService(intent) + if(it != null) { + intent.putExtra("wordDefinition", it) // 传递单词数据 + intent.flags = Intent.FLAG_ACTIVITY_NEW_TASK + startService(intent) + } } // } } diff --git a/app/src/main/res/color/custom_primary_color.xml b/app/src/main/res/color/custom_primary_color.xml index 2935908..0c5bbd4 100644 --- a/app/src/main/res/color/custom_primary_color.xml +++ b/app/src/main/res/color/custom_primary_color.xml @@ -1,4 +1,4 @@ - + \ No newline at end of file diff --git a/app/src/main/res/raw/sixlevel.json b/app/src/main/res/raw/sixlevel.json deleted file mode 100644 index c9c02e4..0000000 --- a/app/src/main/res/raw/sixlevel.json +++ /dev/null @@ -1,8882 +0,0 @@ -[ - { - "word": "abandon", - "definition": "vt.放弃,遗弃;n.放任,狂热" - }, - { - "word": "abnormal", - "definition": "adj.反常的,变态的;" - }, - { - "word": "abolish", - "definition": "vt.废止,废除(法律、制度、习俗等)" - }, - { - "word": "abortion", - "definition": "n.流产,堕胎,失败,夭折,中止,早产" - }, - { - "word": "abrupt", - "definition": "adj.突然的,陡峭的,生硬的" - }, - { - "word": "absence", - "definition": "n.不在,缺席,缺乏,没有" - }, - { - "word": "absorb", - "definition": "vt.吸收,吸引" - }, - { - "word": "abstract", - "definition": "n.摘要,概要,抽象;adj.抽象的,深奥的,理论的;vt.摘要,提炼,抽象化" - }, - { - "word": "absurd", - "definition": "adj.荒谬的,可笑的" - }, - { - "word": "abundance", - "definition": "n.丰富,充裕,丰富充裕" - }, - { - "word": "abundant", - "definition": "adj.丰富的,充裕的,丰富,盛产,富于" - }, - { - "word": "abuse", - "definition": "n.滥用,虐待,辱骂,陋习;v.滥用,虐待,辱骂" - }, - { - "word": "academic", - "definition": "adj.学院的,理论的" - }, - { - "word": "accelerate", - "definition": "v.加速,促进" - }, - { - "word": "acceptance", - "definition": "n.接受,承诺,容忍,赞同,相信" - }, - { - "word": "access", - "definition": "n.通路,访问,入门;vt.存取,接近" - }, - { - "word": "accessory", - "definition": "n.附件,零件,附加物,从犯,同谋者;adj.附属的,补充的,同谋的,副的" - }, - { - "word": "accident", - "definition": "n.意外事件,事故" - }, - { - "word": "accommodate", - "definition": "vt.供应,供给,使适应,调节,和解,向...提供,容纳,调和;vi.适应" - }, - { - "word": "accommodation", - "definition": "n.住处,膳宿,(车,船,飞机等的)预定铺位,(眼睛等的)适应性调节,(社会集团间的)迁就融合" - }, - { - "word": "accomplish", - "definition": "vt.完成,达到,实现" - }, - { - "word": "accord", - "definition": "n.一致,符合,调和,协定;vt.一致,给与;vi.符合" - }, - { - "word": "accordance", - "definition": "n.一致,和谐" - }, - { - "word": "account", - "definition": "n.计算,帐目,说明,估计,理由;vi.说明,总计有,认为,得分;vt.认为" - }, - { - "word": "accumulate", - "definition": "v.积聚,堆积" - }, - { - "word": "accurate", - "definition": "adj.正确的,精确的" - }, - { - "word": "accuse", - "definition": "vt.控告,谴责,非难" - }, - { - "word": "accustomed", - "definition": "adj.通常的,习惯的,按照风俗习惯的" - }, - { - "word": "achievement", - "definition": "n.成就,功绩" - }, - { - "word": "acid", - "definition": "n.[化]酸,<俚>迷幻药;adj.酸的,讽刺的,刻薄的" - }, - { - "word": "acknowledge", - "definition": "vt.承认,答谢,报偿" - }, - { - "word": "acquaint", - "definition": "vt.使熟知,通知" - }, - { - "word": "acquaintance", - "definition": "n.相识,熟人" - }, - { - "word": "acquire", - "definition": "vt.获得,学到" - }, - { - "word": "activate", - "definition": "vt.刺激,使活动;vi.有活力" - }, - { - "word": "acute", - "definition": "adj.敏锐的,[医]急性的,剧烈" - }, - { - "word": "adapt", - "definition": "vt.使适应,改编" - }, - { - "word": "addict", - "definition": "vt.使沉溺,使上瘾;n.入迷的人,有瘾的人" - }, - { - "word": "addition", - "definition": "n.加,加起来,增加物,增加,加法" - }, - { - "word": "additional", - "definition": "adj.另外的,附加的,额外的" - }, - { - "word": "adequate", - "definition": "adj.适当的,足够的" - }, - { - "word": "adhere", - "definition": "vi.粘附,胶着,坚持;v.坚持" - }, - { - "word": "adjacent", - "definition": "adj.邻近的,接近的" - }, - { - "word": "adjoin", - "definition": "v.邻接,毗连" - }, - { - "word": "adjust", - "definition": "vt.调整,调节,校准,使适合" - }, - { - "word": "administration", - "definition": "n.管理,经营,行政部门" - }, - { - "word": "admit", - "definition": "v.容许,承认,接纳" - }, - { - "word": "adolescent", - "definition": "adj.青春期的,青春的;n.青少年" - }, - { - "word": "adopt", - "definition": "vt.采用,收养" - }, - { - "word": "adore", - "definition": "v.崇拜,爱慕,(口语)喜爱" - }, - { - "word": "advantage", - "definition": "n.优势,有利条件,利益" - }, - { - "word": "adverse", - "definition": "adj.不利的,敌对的,相反的" - }, - { - "word": "advocate", - "definition": "n.提倡者,鼓吹者;vt.提倡,鼓吹" - }, - { - "word": "aerial", - "definition": "adj.航空的,生活在空气中的,空气的,高耸的;n.天线" - }, - { - "word": "aesthetic", - "definition": "adj.美学的,审美的,有审美感的" - }, - { - "word": "affection", - "definition": "n.友爱,爱情,影响,疾病,倾向" - }, - { - "word": "affiliate", - "definition": "v.(使...)加入,接受为会员" - }, - { - "word": "affirm", - "definition": "v.断言,确认,肯定" - }, - { - "word": "afflict", - "definition": "vt.使痛苦,折磨" - }, - { - "word": "aggregate", - "definition": "n.合计,总计,集合体;adj.合计的,集合的,聚合的;v.聚集,集合,合计" - }, - { - "word": "aggressive", - "definition": "adj.好斗的,敢作敢为的,有闯劲的,侵略性的" - }, - { - "word": "agony", - "definition": "n.苦恼,极大的痛苦" - }, - { - "word": "agreeable", - "definition": "adj.使人愉快的,惬意的,适合的" - }, - { - "word": "aid", - "definition": "n.帮助,援助,帮助者,有帮助的事物;vt.资助,援助,帮助" - }, - { - "word": "air-conditioning", - "definition": "n.空调,空调系统,空调机" - }, - { - "word": "aisle", - "definition": "n.走廊,过道" - }, - { - "word": "alarm", - "definition": "n.警报,惊慌,警告器;vt.恐吓,警告" - }, - { - "word": "album", - "definition": "n.集邮本,照相簿,签名纪念册" - }, - { - "word": "alcohol", - "definition": "n.酒精,酒" - }, - { - "word": "alert", - "definition": "adj.提防的,警惕的;n.警惕,警报" - }, - { - "word": "alien", - "definition": "n.外侨;adj.外国的,相异的,不同,背道而驰" - }, - { - "word": "alienate", - "definition": "v.疏远" - }, - { - "word": "allege", - "definition": "vt.宣称,断言" - }, - { - "word": "alleviate", - "definition": "vt.使(痛苦等)易于忍受,减轻" - }, - { - "word": "alliance", - "definition": "n.联盟,联合" - }, - { - "word": "allocate", - "definition": "vt.分派,分配" - }, - { - "word": "alloy", - "definition": "n.合金;vt.使成合金,减低成色" - }, - { - "word": "alter", - "definition": "v.改变" - }, - { - "word": "alternate", - "definition": "adj.交替的,轮流的,预备的;v.交替,轮流,改变" - }, - { - "word": "alternative", - "definition": "n.二中择一,可供选择的办法,事物;adj.选择性的,二中择一的" - }, - { - "word": "ambiguous", - "definition": "adj.暧昧的,不明确的" - }, - { - "word": "ambition", - "definition": "n.野心,雄心" - }, - { - "word": "ambitious", - "definition": "adj.有雄心的,野心勃勃的" - }, - { - "word": "amend", - "definition": "v.修正,改进,改正" - }, - { - "word": "ammunition", - "definition": "n.军火,弹药" - }, - { - "word": "amplify", - "definition": "vt.放大,增强;v.扩大" - }, - { - "word": "analogy", - "definition": "n.类似,类推" - }, - { - "word": "analyse", - "definition": "n.&v.分析,分解" - }, - { - "word": "analysis", - "definition": "n.分析,分解" - }, - { - "word": "ancestor", - "definition": "n.祖先,祖宗" - }, - { - "word": "ancient", - "definition": "adj.远古的,旧的" - }, - { - "word": "annoy", - "definition": "vt.使苦恼,骚扰" - }, - { - "word": "annual", - "definition": "n.一年生植物,年刊,年鉴;adj.一年一次的,每年的,一年生的" - }, - { - "word": "anonymous", - "definition": "adj.匿名的" - }, - { - "word": "anticipate", - "definition": "vt.预期,期望,过早使用,先人一着,占先;v.预订,预见,可以预料" - }, - { - "word": "anxiety", - "definition": "n.忧虑,焦急,渴望,热望" - }, - { - "word": "apartment", - "definition": "n.<美>公寓住宅,单元住宅,房间" - }, - { - "word": "apology", - "definition": "n.(为某种思想,宗教,哲学等)辩解,道歉" - }, - { - "word": "apparatus", - "definition": "n.器械,设备,仪器" - }, - { - "word": "appeal", - "definition": "n.请求,呼吁,上诉,吸引力,要求;vi.求助,诉请,要求;vt.控诉" - }, - { - "word": "appearance", - "definition": "n.出现,露面,外貌,外观" - }, - { - "word": "appease", - "definition": "vt.平息,安抚,缓和,使满足" - }, - { - "word": "appendix", - "definition": "n.附录,附属品,[解]阑尾" - }, - { - "word": "applaud", - "definition": "v.拍手喝彩,称赞,赞同" - }, - { - "word": "appliance", - "definition": "n.用具,器具" - }, - { - "word": "application", - "definition": "n.请求,申请,申请表,应用,运用,施用,敷用,应用,应用程序,应用软件" - }, - { - "word": "apply", - "definition": "vt.申请,应用;vi.申请,适用" - }, - { - "word": "appraisal", - "definition": "n.评价,估价(尤指估价财产,以便征税),鉴定" - }, - { - "word": "approach", - "definition": "n.接近,逼近,走进,方法,步骤,途径,通路;vt.接近,动手处理;vi.靠近" - }, - { - "word": "appropriate", - "definition": "adj.适当的" - }, - { - "word": "approve", - "definition": "vi.赞成,满意;vt.批准,通过;v.批准" - }, - { - "word": "apt", - "definition": "adj.易于...的,有...倾向的,灵敏的,灵巧的,适当的,切题的,敏捷,倾向是" - }, - { - "word": "arbitrary", - "definition": "adj.任意的,武断的,独裁的,专断的" - }, - { - "word": "arc", - "definition": "n.弧,弓形,拱" - }, - { - "word": "arena", - "definition": "n.竞技场,舞台" - }, - { - "word": "argue", - "definition": "vi.争论,辩论;vt.说服" - }, - { - "word": "armor", - "definition": "n.装甲" - }, - { - "word": "arouse", - "definition": "vt.唤醒,唤起,鼓励,引起;vi.睡醒" - }, - { - "word": "arrange", - "definition": "v.安排,排列,协商" - }, - { - "word": "arrangement", - "definition": "n.排列,安排" - }, - { - "word": "array", - "definition": "n.排列,编队,军队,衣服,大批;vt.部署,穿着,排列" - }, - { - "word": "arrest", - "definition": "vt.逮捕,拘留,吸引;n.逮捕,拘留" - }, - { - "word": "arrogant", - "definition": "adj.傲慢的,自大的" - }, - { - "word": "artery", - "definition": "n.动脉,要道" - }, - { - "word": "articulate", - "definition": "adj.有关节的,发音清晰的;vt.用关节连接,接合,清晰明白地说" - }, - { - "word": "artificial", - "definition": "adj.人造的,假的,非原产地的" - }, - { - "word": "artillery", - "definition": "n.炮的总称,炮兵的总称" - }, - { - "word": "ascend", - "definition": "v.攀登,上升" - }, - { - "word": "ascertain", - "definition": "vt.确定,探知" - }, - { - "word": "ascribe", - "definition": "vt.归因于,归咎于" - }, - { - "word": "aspect", - "definition": "n.样子,外表,面貌,(问题等的)方面" - }, - { - "word": "aspiration", - "definition": "n.热望,渴望" - }, - { - "word": "assassination", - "definition": "n.暗杀" - }, - { - "word": "assault", - "definition": "n.攻击,袭击;v.袭击" - }, - { - "word": "assemble", - "definition": "vt.集合,聚集,装配;vi.集合" - }, - { - "word": "assert", - "definition": "v.断言,声称" - }, - { - "word": "assess", - "definition": "vt.估定,评定" - }, - { - "word": "asset", - "definition": "n.资产,有用的东西" - }, - { - "word": "assign", - "definition": "vt.分配,指派;v.赋值;[计]将驱动器符重定向至第二个驱动器符" - }, - { - "word": "assignment", - "definition": "n.分配,委派,任务,(课外)作业" - }, - { - "word": "assimilate", - "definition": "v.吸收" - }, - { - "word": "assistance", - "definition": "n.协助,援助,补助,<英>国家补助" - }, - { - "word": "associate", - "definition": "vt.使发生联系,使联合;vi.交往,结交;n.合作人,同事;adj.副的" - }, - { - "word": "association", - "definition": "n.协会,联合,结交,联想" - }, - { - "word": "assume", - "definition": "vt.假定,设想,采取,呈现" - }, - { - "word": "assumption", - "definition": "n.假定,设想,担任,承当,假装,作态" - }, - { - "word": "assurance", - "definition": "n.确信,断言,保证,担保" - }, - { - "word": "assure", - "definition": "vt.断然地说,确告,保证,担保" - }, - { - "word": "athlete", - "definition": "n.运动员,运动选手" - }, - { - "word": "atlas", - "definition": "n.地图,地图集" - }, - { - "word": "atmosphere", - "definition": "n.大气,空气,气氛" - }, - { - "word": "attach", - "definition": "vt.缚上,系上,贴上;v.配属,隶属于" - }, - { - "word": "attack", - "definition": "n.进攻,攻击,(用语言)抨击,批评,疾病发作,侵袭;vt.攻击,抨击,动手处理(某事);vi.攻击" - }, - { - "word": "attain", - "definition": "vt.达到,获得;v.达到" - }, - { - "word": "attempt", - "definition": "n.努力,尝试,企图;vt.尝试,企图" - }, - { - "word": "attendant", - "definition": "n.服务员" - }, - { - "word": "attitude", - "definition": "n.姿势,态度,看法,意见" - }, - { - "word": "attract", - "definition": "vt.吸引;vi.有吸引力,引起注意" - }, - { - "word": "attractive", - "definition": "adj.吸引人的,有魅力的" - }, - { - "word": "attribute", - "definition": "n.属性,品质,特征,加于,归结于" - }, - { - "word": "auction", - "definition": "n.拍卖;vt.拍卖" - }, - { - "word": "audience", - "definition": "n.听众,观众,接见,拜见" - }, - { - "word": "authentic", - "definition": "adj.可信的" - }, - { - "word": "author", - "definition": "n.作家,创造者" - }, - { - "word": "authoritative", - "definition": "adj.权威的,有权威的,命令的" - }, - { - "word": "authority", - "definition": "n.权威,威信,权威人士,权力,职权,典据,著作权威" - }, - { - "word": "authorize", - "definition": "v.批准" - }, - { - "word": "autonomous", - "definition": "adj.自治的" - }, - { - "word": "autonomy", - "definition": "n.自治" - }, - { - "word": "avail", - "definition": "vi.有益于,有帮助,有用,有利;vt.有利于;n.效用,利益" - }, - { - "word": "available", - "definition": "adj.可用到的,可利用的,有用的,有空的,接受探访的" - }, - { - "word": "avert", - "definition": "v.转移" - }, - { - "word": "aviation", - "definition": "n.飞行,航空,航空学,航空术" - }, - { - "word": "avoid", - "definition": "vt.避免,消除" - }, - { - "word": "award", - "definition": "n.奖,奖品;vt.授予,判给" - }, - { - "word": "aware", - "definition": "adj.知道的,明白的,意识到的" - }, - { - "word": "awkward", - "definition": "adj.难使用的,笨拙的" - }, - { - "word": "axis", - "definition": "n.轴" - }, - { - "word": "background", - "definition": "n.背景,后台,不重要或不引人注目的地方或位置" - }, - { - "word": "bacteria", - "definition": "n.细菌" - }, - { - "word": "ballet", - "definition": "n.芭蕾舞,芭蕾舞剧,芭蕾舞乐曲" - }, - { - "word": "bamboo", - "definition": "n.竹子" - }, - { - "word": "band", - "definition": "n.带子,镶边,波段,队,乐队;v.联合,结合" - }, - { - "word": "bandage", - "definition": "n.绷带" - }, - { - "word": "bang", - "definition": "n.重击,突然巨响;v.发巨响,重击" - }, - { - "word": "banquet", - "definition": "n.宴会" - }, - { - "word": "barely", - "definition": "adv.仅仅,刚刚,几乎不能" - }, - { - "word": "bargain", - "definition": "n.契约,合同,成交商品,便宜货;v.议价" - }, - { - "word": "barren", - "definition": "adj.不生育的,不孕的,贫瘠的,没有结果的,无益的,单调的,无聊的,空洞的;n.荒地" - }, - { - "word": "barricade", - "definition": "v.设路障;n.路障" - }, - { - "word": "barrier", - "definition": "n.(阻碍通道的)障碍物,栅栏,屏障" - }, - { - "word": "basis", - "definition": "n.基础,基本,根据,主要成分(或要素),(认识论中的)基本原则或原理" - }, - { - "word": "batch", - "definition": "n.(面包等)一炉,一批" - }, - { - "word": "batter", - "definition": "n.击球手;v.打坏,猛击" - }, - { - "word": "beam", - "definition": "n.梁,桁条,(光线的)束,柱,电波,横梁;v.播送" - }, - { - "word": "beforehand", - "definition": "adv.预先" - }, - { - "word": "behave", - "definition": "vi.举动,举止,运转;v.行为表现" - }, - { - "word": "behavior", - "definition": "n.举止,行为" - }, - { - "word": "belly", - "definition": "n.腹部,胃;vi.涨满" - }, - { - "word": "beneficial", - "definition": "adj.有益的,受益的,[法律]有使用权的;adj.有益的,得利的,[律]有使用权的" - }, - { - "word": "benefit", - "definition": "n.利益,好处;vt.有益于,有助于;vi.受益" - }, - { - "word": "betray", - "definition": "vt.出卖,背叛,泄露(秘密),露出...迹象" - }, - { - "word": "bewilder", - "definition": "vt.使迷惑,使不知所措,使昏乱" - }, - { - "word": "beyond", - "definition": "prep.在(到)...较远的一边,超过,那一边;adv.在远处;n.远处" - }, - { - "word": "bibliography", - "definition": "n.(有关一个题目或一个人的)书目,参考书目" - }, - { - "word": "biography", - "definition": "n.传记" - }, - { - "word": "bizarre", - "definition": "adj.奇异的(指态度,容貌,款式等)" - }, - { - "word": "blank", - "definition": "adj.空白的,空着的,失色的,没有表情的;n.空白,<美>表格" - }, - { - "word": "blaze", - "definition": "n.火焰,光辉,情感爆发;vi.燃烧,照耀,激发;vt.在树皮上刻路标,公开宣布" - }, - { - "word": "bleed", - "definition": "v.使出血,放血" - }, - { - "word": "blink", - "definition": "v.眨眼,闪亮,无视" - }, - { - "word": "blossom", - "definition": "n.花(尤指结果实者),花开的状态,兴旺期;vi.开花,兴旺,发展" - }, - { - "word": "blunder", - "definition": "v.跌跌撞撞地走,犯大错,做错;n.大错,失误" - }, - { - "word": "blunt", - "definition": "adj.钝的,生硬的" - }, - { - "word": "blur", - "definition": "v.涂污,污损(名誉等),把(界线,视线等)弄得模糊不清,弄污;n.污点" - }, - { - "word": "blush", - "definition": "v.脸红,羞愧,呈现红色,使成红色;n.脸红,红色,红光" - }, - { - "word": "bonus", - "definition": "n.奖金,红利" - }, - { - "word": "booklet", - "definition": "n.小册子" - }, - { - "word": "boom", - "definition": "n.繁荣,隆隆声;v.发隆隆声,兴隆,大事宣传" - }, - { - "word": "booth", - "definition": "n.货摊,售货亭,棚" - }, - { - "word": "border", - "definition": "n.边界,国界,边,边沿,边境;vt.与...接壤,接近;v.接壤" - }, - { - "word": "boring", - "definition": "n.钻(孔);adj.令人厌烦的" - }, - { - "word": "bounce", - "definition": "v.(使)反跳,弹起,(指支票)被银行退票,弹跳;n.(球)跳起,弹回" - }, - { - "word": "bound", - "definition": "n.跃进,跳,范围,限度;adj.正要启程的,开往...去的,被束缚的,装订的;v.跳跃,限制" - }, - { - "word": "bowel", - "definition": "n.肠;adj.内部,同情心" - }, - { - "word": "boycott", - "definition": "n.&vt.联合抵制,联合排斥某国货物或与某国绝交" - }, - { - "word": "brace", - "definition": "n.支柱,带子,振作精神;vt.支住,撑牢,振作起来,奋起;adj.曲柄的;v.支持" - }, - { - "word": "bracket", - "definition": "n.墙上凸出的托架,括弧,支架;v.括在一起" - }, - { - "word": "brand", - "definition": "n.商标,牌子,烙印;vt.打火印,污辱" - }, - { - "word": "breach", - "definition": "n.违背,破坏,破裂,裂口;vt.打破,突破" - }, - { - "word": "breakdown", - "definition": "n.崩溃,衰弱,细目分类" - }, - { - "word": "breakthrough", - "definition": "n.突破" - }, - { - "word": "breed", - "definition": "v.(使)繁殖,教养,抚养;n.品种,种类" - }, - { - "word": "brew", - "definition": "v.酿造,酝酿" - }, - { - "word": "bribe", - "definition": "n.贿赂;vt.贿赂,向...行贿" - }, - { - "word": "brief", - "definition": "n.摘要,大纲;adj.简短的,短暂的;vt.摘要,(军事)下达简令" - }, - { - "word": "brilliant", - "definition": "adj.灿烂的,闪耀的,有才气的" - }, - { - "word": "brink", - "definition": "n.(峭岸、崖的)边缘" - }, - { - "word": "brisk", - "definition": "adj.敏锐的,凛冽的,轻快的,活泼的;vt.使活泼;vi.活跃起来" - }, - { - "word": "bronze", - "definition": "n.青铜(铜与锡合金),铜像;adj.青铜色的" - }, - { - "word": "brood", - "definition": "n.(动物中鸟或家禽的)一窝,(同种或同类的)一伙;vt.孵,沉思" - }, - { - "word": "bruise", - "definition": "n.瘀伤,擦伤;v.打伤,撞伤" - }, - { - "word": "brutal", - "definition": "adj.残忍的,兽性的" - }, - { - "word": "buck", - "definition": "n.<美口>元,雄鹿,公羊,公兔;v.(马等)突然一跃(将骑手摔下)" - }, - { - "word": "bud", - "definition": "n.芽,蓓蕾;vi.发芽,萌芽" - }, - { - "word": "budget", - "definition": "n.预算;vi.做预算,编入预算" - }, - { - "word": "bug", - "definition": "n.小虫,臭虫;v.装置窃听器,打扰" - }, - { - "word": "bulk", - "definition": "n.大小,体积,大批,大多数,散装;vt.显得大,显得重要" - }, - { - "word": "bull", - "definition": "n.[动]公牛,粗壮如牛的人" - }, - { - "word": "bulletin", - "definition": "n.公告,报告" - }, - { - "word": "bully", - "definition": "n.欺凌弱小者;vt.威吓,威逼" - }, - { - "word": "bump", - "definition": "n.撞击,肿块;v.碰(伤),撞(破),颠簸" - }, - { - "word": "burden", - "definition": "n.担子,负担;v.负担" - }, - { - "word": "bureaucracy", - "definition": "n.官僚,官僚作风,官僚机构" - }, - { - "word": "burial", - "definition": "n.埋葬" - }, - { - "word": "bust", - "definition": "n.半身像,胸像,(妇女的)胸部" - }, - { - "word": "buzz", - "definition": "n.嗡嗡声;v.作嗡嗡声,嗡嗡作响,逼近" - }, - { - "word": "bypass", - "definition": "n.旁路;vt.设旁路,迂回" - }, - { - "word": "cabin", - "definition": "n.小屋,船舱" - }, - { - "word": "cabinet", - "definition": "n.(有抽屉或格子的)橱柜,<美>内阁;adj.<美>内阁的,小巧的" - }, - { - "word": "cable", - "definition": "n.电缆,海底电报,缆,索;v.打(海底)电报" - }, - { - "word": "cafeteria", - "definition": "n.自助餐厅" - }, - { - "word": "calcium", - "definition": "n.[化]钙(元素符号Ca)" - }, - { - "word": "calorie", - "definition": "n.卡路里" - }, - { - "word": "cancel", - "definition": "vt.取消,删去" - }, - { - "word": "cancer", - "definition": "n.癌,毒瘤" - }, - { - "word": "candidate", - "definition": "n.候选人,投考者" - }, - { - "word": "cane", - "definition": "n.细长的茎,藤条;vt.以杖击,以藤编制" - }, - { - "word": "cannon", - "definition": "n.大炮,加农炮;v.炮轰" - }, - { - "word": "canon", - "definition": "n.教会法教规,教规,(基督教的)正典圣经(简称正经),一个作家的真作;日本佳能公司" - }, - { - "word": "canvas", - "definition": "v.彻底讨论探究;n.帆布" - }, - { - "word": "capable", - "definition": "adj.有能力的,能干的,有可能的,可以...的" - }, - { - "word": "capacity", - "definition": "n.容量,生产量,容量,智能,才能,能力,接受力,地位" - }, - { - "word": "cape", - "definition": "n.海角,岬" - }, - { - "word": "capsule", - "definition": "n.(植物)蒴果,胶囊,瓶帽,太空舱" - }, - { - "word": "caption", - "definition": "n.标题,说明,字幕;vt.加上标题,加上说明" - }, - { - "word": "captive", - "definition": "n.俘虏,被美色或爱情迷住的人;adj.被俘的,被迷住的" - }, - { - "word": "cardinal", - "definition": "n.枢机主教,红衣主教;adj.主要的,最重要的" - }, - { - "word": "carve", - "definition": "v.雕刻,切开" - }, - { - "word": "cast", - "definition": "n.投掷,铸件,脱落物,一瞥,演员表;v.投,抛,投射,浇铸,计算,派(角色)" - }, - { - "word": "casual", - "definition": "adj.偶然的,不经意的,临时的" - }, - { - "word": "casualty", - "definition": "n.伤亡" - }, - { - "word": "catastrophe", - "definition": "n.大灾难,大祸" - }, - { - "word": "cater", - "definition": "vi.备办食物,满足(需要),投合" - }, - { - "word": "cathedral", - "definition": "n.大教堂" - }, - { - "word": "catholic", - "definition": "n.天主教徒;adj.天主教的" - }, - { - "word": "caution", - "definition": "n.小心,谨慎,警告;vt.警告" - }, - { - "word": "cautious", - "definition": "adj.谨慎的,小心的" - }, - { - "word": "cavity", - "definition": "n.洞,空穴,[解剖]腔" - }, - { - "word": "cellar", - "definition": "n.地窖,地下室,酒窖,藏酒量" - }, - { - "word": "cemetery", - "definition": "n.墓地,公墓" - }, - { - "word": "census", - "definition": "n.人口普查" - }, - { - "word": "ceramic", - "definition": "adj.陶器的;n.陶瓷制品" - }, - { - "word": "cereal", - "definition": "n.谷类食品,谷类" - }, - { - "word": "certainty", - "definition": "n.确定,确实的事情" - }, - { - "word": "certify", - "definition": "v.证明,保证" - }, - { - "word": "challenge", - "definition": "n.挑战;vt.向...挑战" - }, - { - "word": "champagne", - "definition": "n.香槟酒,香槟色" - }, - { - "word": "champion", - "definition": "n.冠军,拥护者,战士;vt.拥护,支持" - }, - { - "word": "chant", - "definition": "n.圣歌" - }, - { - "word": "chapel", - "definition": "n.小礼拜堂,礼拜" - }, - { - "word": "character", - "definition": "n.(事物的)特性,性质,特征(的总和),(人的)品质,字符,性格,特征,人物;vt.写,刻,印,使具有特征" - }, - { - "word": "characteristic", - "definition": "adj.特有的,表示特性的,典型的;n.特性,特征" - }, - { - "word": "characterize", - "definition": "vt.表现...的特色,刻画的...性格" - }, - { - "word": "charge", - "definition": "n.负荷,电荷,费用,主管,掌管,充电,充气,装料;v.装满,控诉,责令,告诫,指示,加罪于,冲锋,收费" - }, - { - "word": "chase", - "definition": "n.追赶,追击;vt.追赶,追逐,雕镂" - }, - { - "word": "cherish", - "definition": "vt.珍爱,怀抱(希望等)" - }, - { - "word": "chief", - "definition": "n.首领,领袖,酋长,长官,主要部分,最有价值的部分;adj.主要的,首要的,首席的,主任的" - }, - { - "word": "chip", - "definition": "n.碎片,筹码;v.削成碎片,碎裂;芯片" - }, - { - "word": "cholesterol", - "definition": "n.胆固醇" - }, - { - "word": "chord", - "definition": "n.弦,和音,情绪;n.[解]腱" - }, - { - "word": "chorus", - "definition": "n.合唱,合唱队,齐声" - }, - { - "word": "chronic", - "definition": "adj.慢性的,延续很长的" - }, - { - "word": "chunk", - "definition": "n.大块,矮胖的人或物" - }, - { - "word": "circulation", - "definition": "n.循环,流通,发行额" - }, - { - "word": "circumstance", - "definition": "n.环境,详情,境况" - }, - { - "word": "circus", - "definition": "n.马戏团,杂技团,马戏场,杂技场" - }, - { - "word": "cite", - "definition": "vt.引用,引证,提名表扬" - }, - { - "word": "claim", - "definition": "n.(根据权利提出)要求,要求权,主张,要求而得到的东西;vt.(根据权利)要求,认领,声称,主张,需要" - }, - { - "word": "clamp", - "definition": "n.夹子,夹具,夹钳;vt.夹住,夹紧" - }, - { - "word": "clan", - "definition": "n.部落,氏族,宗族,党派" - }, - { - "word": "clarity", - "definition": "n.清楚,透明" - }, - { - "word": "clash", - "definition": "n.冲突,撞击声,抵触;v.(使)发出撞击声,猛撞,冲突" - }, - { - "word": "clasp", - "definition": "n.扣子,钩,紧握,抱住;v.扣紧,紧握,搂抱,密切合作" - }, - { - "word": "classic", - "definition": "n.杰作,名著;adj.第一流的" - }, - { - "word": "classical", - "definition": "adj.古典的,正统派的,古典文学的" - }, - { - "word": "classification", - "definition": "n.分类,分级" - }, - { - "word": "clearance", - "definition": "n.清除" - }, - { - "word": "clerk", - "definition": "n.职员,办事员,<美>店员" - }, - { - "word": "client", - "definition": "n.[计]顾客,客户,委托人" - }, - { - "word": "cliff", - "definition": "n.悬崖,绝壁" - }, - { - "word": "climate", - "definition": "n.气候,风土,思潮" - }, - { - "word": "climax", - "definition": "n.高潮,顶点" - }, - { - "word": "cling", - "definition": "vi.粘紧,附着,紧贴,坚持(意见),墨守(习惯)" - }, - { - "word": "clip", - "definition": "n.夹子,回形针,子弹夹;vt.夹住,剪短,修剪" - }, - { - "word": "clockwise", - "definition": "adj.顺时针方向的;adv.顺时针方向地" - }, - { - "word": "clone", - "definition": "n.无性系,无性繁殖,克隆;v.无性繁殖,复制" - }, - { - "word": "closet", - "definition": "n.壁橱,储藏室,厕所;adj.关起门来的;vt.关入私室密谈" - }, - { - "word": "clue", - "definition": "n.线索" - }, - { - "word": "cluster", - "definition": "n.串,丛;vi.丛生,成群" - }, - { - "word": "clutch", - "definition": "v.抓住,攫住;n.离合器" - }, - { - "word": "coalition", - "definition": "n.合并,接合,联合" - }, - { - "word": "coarse", - "definition": "adj.粗糙的,粗鄙的" - }, - { - "word": "cocaine", - "definition": "n.古柯碱,可卡因" - }, - { - "word": "cocktail", - "definition": "n.鸡尾酒,(第一道用杯盛的)开味食品;adj.鸡尾酒的" - }, - { - "word": "cognitive", - "definition": "adj.认知的,认识的,有感知的" - }, - { - "word": "coherent", - "definition": "adj.粘在一起的,一致的,连贯的" - }, - { - "word": "coincide", - "definition": "vi.一致,符合" - }, - { - "word": "coincidence", - "definition": "n.一致,相合,同时发生或同时存在(尤指偶然)的事" - }, - { - "word": "collaboration", - "definition": "n.协作,通敌" - }, - { - "word": "collapse", - "definition": "n.倒塌,崩溃,失败,虚脱;vi.倒塌,崩溃,瓦解,失败,病倒" - }, - { - "word": "colleague", - "definition": "n.同事,同僚" - }, - { - "word": "collide", - "definition": "vi.碰撞,抵触" - }, - { - "word": "collision", - "definition": "n.碰撞,冲突" - }, - { - "word": "colonial", - "definition": "adj.殖民的,殖民地的n.殖民地居民" - }, - { - "word": "combat", - "definition": "n.战斗,格斗;v.战斗,搏斗,抗击" - }, - { - "word": "combination", - "definition": "n.结合,联合,合并,化合,化合物" - }, - { - "word": "combine", - "definition": "v.(使)联合,(使)结合;n.联合企业,联合收割机;n.联合收割机" - }, - { - "word": "comet", - "definition": "n.彗星" - }, - { - "word": "comic", - "definition": "n.滑稽演员;adj.滑稽的,喜剧的" - }, - { - "word": "command", - "definition": "n.命令,掌握,司令部;v.命令,指挥,克制,支配,博得,俯临" - }, - { - "word": "commemorate", - "definition": "vt.纪念" - }, - { - "word": "commence", - "definition": "v.开始,着手" - }, - { - "word": "commend", - "definition": "vt.称赞,表扬,推荐,委托,吸引" - }, - { - "word": "commentary", - "definition": "n.注释,解说词" - }, - { - "word": "commercial", - "definition": "adj.商业的,贸易的" - }, - { - "word": "commission", - "definition": "n.委任,委托,代办(权),代理(权),犯(罪),佣金;vt.委任,任命,委托,委托制作,使服役" - }, - { - "word": "commit", - "definition": "vt.犯(错误),干(坏事),把...交托给,提交,答应负责" - }, - { - "word": "commitment", - "definition": "n.委托事项,许诺,承担义务" - }, - { - "word": "committee", - "definition": "n.委员会" - }, - { - "word": "commodity", - "definition": "n.日用品" - }, - { - "word": "commonplace", - "definition": "n.平凡的事,平常话;adj.平凡的" - }, - { - "word": "commonwealth", - "definition": "n.国民整体,共和国,联邦" - }, - { - "word": "communicate", - "definition": "v.沟通,通信,(房间、道路、花园等)相通,传达,感染" - }, - { - "word": "communication", - "definition": "n.传达,信息,交通,通讯" - }, - { - "word": "community", - "definition": "n.公社,团体,社会,(政治)共同体,共有,一致,共同体,(生物)群落" - }, - { - "word": "commute", - "definition": "v.交换,抵偿,减刑,<电工>整流" - }, - { - "word": "compact", - "definition": "adj.紧凑的,紧密的,简洁的;n.契约,合同,小粉盒" - }, - { - "word": "companion", - "definition": "n.同伴,共事者" - }, - { - "word": "comparable", - "definition": "adj.可比较的,比得上的" - }, - { - "word": "compare", - "definition": "v.比较,相比,比喻n.比较" - }, - { - "word": "comparison", - "definition": "n.比较,对照,比喻,比较关系" - }, - { - "word": "compartment", - "definition": "n.间隔间,车厢" - }, - { - "word": "compatible", - "definition": "adj.谐调的,一致的,兼容的" - }, - { - "word": "compel", - "definition": "vt.强迫,迫使" - }, - { - "word": "compensate", - "definition": "v.偿还,补偿,付报酬" - }, - { - "word": "compete", - "definition": "vi.比赛,竞争" - }, - { - "word": "competence", - "definition": "n.能力" - }, - { - "word": "competitive", - "definition": "adj.竞争的" - }, - { - "word": "compile", - "definition": "vt.编译,编辑,汇编" - }, - { - "word": "complain", - "definition": "v.抱怨,悲叹,控诉" - }, - { - "word": "complaint", - "definition": "n.诉苦,抱怨,牢骚,委屈,疾病" - }, - { - "word": "complement", - "definition": "n.补足物,[文法]补语,[数]余角;vt.补助,补足" - }, - { - "word": "complex", - "definition": "adj.复杂的,合成的,综合的;n.联合体" - }, - { - "word": "complexion", - "definition": "n.面色,肤色,情况,局面" - }, - { - "word": "complicated", - "definition": "adj.复杂的,难解的" - }, - { - "word": "complication", - "definition": "n.复杂化,(使复杂的)因素;n.[医]并发症" - }, - { - "word": "compliment", - "definition": "n.称赞,恭维,致意,问候,道贺;vt.称赞,褒扬,恭维" - }, - { - "word": "comply", - "definition": "vi.顺从,答应,遵守" - }, - { - "word": "component", - "definition": "n.成分;adj.组成的,构成的" - }, - { - "word": "compose", - "definition": "v.组成,写作,排字,(使)安定,调解" - }, - { - "word": "composite", - "definition": "adj.合成的,复合的;n.合成物" - }, - { - "word": "compound", - "definition": "n.混合物,[化]化合物;adj.复合的;v.混合,配合" - }, - { - "word": "comprehension", - "definition": "n.理解,包含" - }, - { - "word": "comprehensive", - "definition": "adj.全面的,广泛的,能充分理解的,包容的" - }, - { - "word": "compromise", - "definition": "n.妥协,折衷;v.妥协,折衷,危及...的安全" - }, - { - "word": "compulsory", - "definition": "adj.必需做的,必修的,被强迫的,被强制的,义务的" - }, - { - "word": "compute", - "definition": "v.计算,估计,用计算机计算(或确定)" - }, - { - "word": "concede", - "definition": "vt.勉强,承认,退让;vi.让步" - }, - { - "word": "conceive", - "definition": "vt.构思,以为,持有;vi.怀孕,考虑,设想" - }, - { - "word": "concentrate", - "definition": "v.集中,浓缩" - }, - { - "word": "concentration", - "definition": "n.集中,集合,专心,浓缩,浓度" - }, - { - "word": "concept", - "definition": "n.观念,概念" - }, - { - "word": "conception", - "definition": "n.观念,概念" - }, - { - "word": "concern", - "definition": "vt.涉及,关系到;n.(利害)关系,关心,关注,关注,所关心的是" - }, - { - "word": "concise", - "definition": "adj.简明的,简练的" - }, - { - "word": "conclude", - "definition": "v.结束,终止,决定,作出结论;vt.推断,断定,缔结,议定" - }, - { - "word": "condemn", - "definition": "vt.判刑,处刑,声讨,谴责" - }, - { - "word": "condense", - "definition": "v.(使)浓缩,精简" - }, - { - "word": "conduct", - "definition": "n.行为,操行;v.引导,管理,为人,传导" - }, - { - "word": "confer", - "definition": "vt.授予(称号、学位等),赠与,把...赠与,协议;v.协商,交换意见" - }, - { - "word": "conference", - "definition": "n.会议,讨论会,协商会" - }, - { - "word": "confidence", - "definition": "n.信心" - }, - { - "word": "confident", - "definition": "adj.自信的,确信的" - }, - { - "word": "confidential", - "definition": "adj.秘密的,机密的" - }, - { - "word": "configuration", - "definition": "n.构造,结构,配置,外形" - }, - { - "word": "confine", - "definition": "vt.限制,禁闭;n.界限,边界" - }, - { - "word": "confirm", - "definition": "vt.确定,批准,使巩固,使有效;v.确认,(基督教中)给...行按手礼" - }, - { - "word": "conflict", - "definition": "n.斗争,冲突;vi.抵触,冲突" - }, - { - "word": "conform", - "definition": "vt.使一致,使遵守,使顺从;vi.符合,相似,适应环境;adj.一致的,顺从的" - }, - { - "word": "confront", - "definition": "vt.使面临,对抗" - }, - { - "word": "confusion", - "definition": "n.混乱,混淆" - }, - { - "word": "congress", - "definition": "n.(代表)大会,[C~](美国等国的)国会,议会" - }, - { - "word": "conscientious", - "definition": "adj.尽责的" - }, - { - "word": "conscious", - "definition": "adj.有意识的,有知觉的,故意的,羞怯的" - }, - { - "word": "consecutive", - "definition": "adj.连续的,联贯的" - }, - { - "word": "consensus", - "definition": "n.一致同意,多数人的意见,舆论" - }, - { - "word": "consent", - "definition": "vi.同意,赞成,答应;n.同意,赞成,允诺" - }, - { - "word": "consequence", - "definition": "n.结果,[逻]推理,推论,因果关系,重要的地位" - }, - { - "word": "consequent", - "definition": "adj.作为结果的,随之发生的" - }, - { - "word": "consequently", - "definition": "adv.从而,因此" - }, - { - "word": "conservation", - "definition": "n.保存,保持,守恒" - }, - { - "word": "conservative", - "definition": "adj.保守的,守旧的;n.保守派" - }, - { - "word": "conserve", - "definition": "vt.保存,保藏" - }, - { - "word": "considerable", - "definition": "adj.相当大(或多)的,值得考虑的,相当可观的" - }, - { - "word": "considerate", - "definition": "adj.考虑周到的" - }, - { - "word": "consist", - "definition": "vi.由...组成,在于,一致" - }, - { - "word": "consistent", - "definition": "adj.一致的,调和的,坚固的,[数、统]相容的" - }, - { - "word": "console", - "definition": "vt.安慰,藉慰;n.[计]控制台" - }, - { - "word": "consolidate", - "definition": "v.巩固" - }, - { - "word": "conspicuous", - "definition": "adj.显著的" - }, - { - "word": "constant", - "definition": "n.[数、物]常数,恒量;adj.不变的,持续的,坚决的" - }, - { - "word": "constituent", - "definition": "n.委托人,要素;adj.有选举权的;有宪法制定[修改]权的" - }, - { - "word": "constitute", - "definition": "vt.制定(法律),建立(政府),组成,任命" - }, - { - "word": "constitution", - "definition": "n.宪法,构造,体质,体格,国体,章程,惯例" - }, - { - "word": "constrain", - "definition": "vt.强迫,抑制,拘束" - }, - { - "word": "construct", - "definition": "vt.建造,构造,创立" - }, - { - "word": "consult", - "definition": "v.商量,商议,请教,参考,考虑" - }, - { - "word": "consultant", - "definition": "n.顾问,商议者,咨询者" - }, - { - "word": "consume", - "definition": "vt.消耗,消费,消灭,大吃大喝,吸引;vi.消灭,毁灭" - }, - { - "word": "consumer", - "definition": "n.消费者" - }, - { - "word": "consumption", - "definition": "n.消费,消费量,肺病" - }, - { - "word": "contact", - "definition": "n.接触,联系;vt.接触,联系" - }, - { - "word": "contaminate", - "definition": "v.污染" - }, - { - "word": "contemplate", - "definition": "v.凝视,沉思,预期,企图" - }, - { - "word": "contempt", - "definition": "n.轻视,轻蔑,耻辱,不尊敬,[律]藐视法庭(或国会)" - }, - { - "word": "contend", - "definition": "v.斗争,竞争,主张" - }, - { - "word": "contention", - "definition": "n.争夺,争论,争辩,论点" - }, - { - "word": "contest", - "definition": "n.论争,竞赛;v.,争论,争辩,竞赛,争夺" - }, - { - "word": "continual", - "definition": "adj.连续的,频繁的,持续不断的" - }, - { - "word": "continuity", - "definition": "n.连续性,连贯性" - }, - { - "word": "contract", - "definition": "n.合同,契约,婚约;v.使缩短,感染,订约" - }, - { - "word": "contradict", - "definition": "vt.同...矛盾,同...抵触" - }, - { - "word": "contradiction", - "definition": "n.反驳,矛盾" - }, - { - "word": "contrast", - "definition": "vt.使与...对比,使与...对照;vi.和...形成对照;n.对比,对照,(对照中的)差异" - }, - { - "word": "contribute", - "definition": "v.捐助,捐献,贡献,投稿" - }, - { - "word": "contribution", - "definition": "n.捐献,贡献,投稿" - }, - { - "word": "contrive", - "definition": "v.发明,设计,图谋" - }, - { - "word": "controversial", - "definition": "adj.争论的,争议的" - }, - { - "word": "controversy", - "definition": "n.论争,辩论,论战" - }, - { - "word": "convene", - "definition": "v.召集,集合" - }, - { - "word": "convenience", - "definition": "n.便利,方便,有益,有用的,方便的用具、机械、安排等" - }, - { - "word": "convention", - "definition": "n.大会,协定,习俗,惯例" - }, - { - "word": "conventional", - "definition": "adj.惯例的,常规的,习俗的,传统的" - }, - { - "word": "converge", - "definition": "v.聚合,集中于一点;vt.会聚" - }, - { - "word": "conversion", - "definition": "n.变换,转化" - }, - { - "word": "convert", - "definition": "n.皈依者;vt.使转变,转换...,使...改变信仰" - }, - { - "word": "convey", - "definition": "vt.搬运,传达,转让" - }, - { - "word": "convict", - "definition": "vt.证明...有罪,宣告...有罪;n.罪犯" - }, - { - "word": "convince", - "definition": "vt.使确信,使信服" - }, - { - "word": "cooperative", - "definition": "adj.合作的,协力的" - }, - { - "word": "cope", - "definition": "vi.(善于)应付,(善于)处理" - }, - { - "word": "cord", - "definition": "n.绳索,束缚" - }, - { - "word": "cordial", - "definition": "n.兴奋剂,兴奋性饮料;adj.热忱的,诚恳的,兴奋的" - }, - { - "word": "cork", - "definition": "n.软木塞,软木,(用塞子)塞住" - }, - { - "word": "corporate", - "definition": "adj.社团的,法人的,共同的,全体的" - }, - { - "word": "corps", - "definition": "n.军团,兵队,团,兵种,技术兵种,特殊兵种,(德国大学的)学生联合会" - }, - { - "word": "corpse", - "definition": "n.尸体" - }, - { - "word": "correlate", - "definition": "vt.使相互关联;vi.和...相关" - }, - { - "word": "correspondence", - "definition": "n.相应,通信,信件" - }, - { - "word": "corresponding", - "definition": "adj.相应的,通讯的" - }, - { - "word": "corrode", - "definition": "v.使腐蚀,侵蚀" - }, - { - "word": "corrupt", - "definition": "adj.腐败的,贪污的,被破坏的,混浊的,(语法)误用的;vt.使腐烂,腐蚀,使恶化;vi.腐烂,堕落" - }, - { - "word": "costume", - "definition": "n.装束,服装" - }, - { - "word": "council", - "definition": "n.政务会,理事会,委员会,参议会,讨论会议,顾问班子,立法班子" - }, - { - "word": "counsel", - "definition": "n.讨论,商议,辩护律师;vt.劝告,忠告" - }, - { - "word": "counter", - "definition": "n.计算器,计数器,计算者,柜台,筹码;adv.prep.相反地" - }, - { - "word": "counterpart", - "definition": "n.副本,极相似的人或物,配对物" - }, - { - "word": "coupon", - "definition": "n.息票,商家的优待券" - }, - { - "word": "court", - "definition": "n.法院,庭院,朝廷,球场,奉承,求爱;vt.向...献殷勤,追求,博得(喝彩),招致(失败危险等);vi.求爱" - }, - { - "word": "courtesy", - "definition": "n.谦恭,允许,礼貌" - }, - { - "word": "coverage", - "definition": "n.覆盖" - }, - { - "word": "coward", - "definition": "n.懦弱的人,胆小的人" - }, - { - "word": "cozy", - "definition": "adj.舒适的,安逸的,惬意的" - }, - { - "word": "cradle", - "definition": "n.摇篮,发源地,支船架;vt.将...放在摇篮内" - }, - { - "word": "crash", - "definition": "n.碰撞,坠落,坠毁,撞击声,爆裂声;v.碰撞,坠落,坠毁,(指商业公司,政府等)破产,垮台" - }, - { - "word": "creation", - "definition": "n.创造,创作物" - }, - { - "word": "credible", - "definition": "adj.可信的,可靠的" - }, - { - "word": "credit", - "definition": "n.信任,信用,声望,荣誉,[财务]贷方,银行存款;vt.相信,信任,把...归给" - }, - { - "word": "crew", - "definition": "n.全体人员,(工作)队;vbl.crow的过去式" - }, - { - "word": "crime", - "definition": "n.犯罪,犯罪行为,罪行,罪恶" - }, - { - "word": "criminal", - "definition": "n.罪犯,犯罪者;adj.犯罪的,犯法的,罪恶的" - }, - { - "word": "cripple", - "definition": "n.跛子;v.削弱" - }, - { - "word": "crisis", - "definition": "n.疾病的转折点(或转好或恶化),决定性时刻,危机,危险期,历史上的紧要关头,[医]危象,转换期" - }, - { - "word": "crisp", - "definition": "adj.脆的,易碎的" - }, - { - "word": "criterion", - "definition": "n.(批评判断的)标准,准据,规范" - }, - { - "word": "critic", - "definition": "n.批评家,评论家,吹毛求疵者" - }, - { - "word": "critical", - "definition": "adj.评论的,鉴定的,批评的,危急的,临界的" - }, - { - "word": "criticism", - "definition": "n.批评,批判" - }, - { - "word": "criticize", - "definition": "v.批评,责备" - }, - { - "word": "crowd", - "definition": "n.人群,群众,一堆(东西),一伙;v.群集,拥挤,挤满" - }, - { - "word": "crucial", - "definition": "adj.至关紧要的" - }, - { - "word": "crumble", - "definition": "v.弄碎,粉碎,崩溃;n.面包屑" - }, - { - "word": "crush", - "definition": "vt.压碎,碾碎,压服,压垮,粉碎,(使)变形" - }, - { - "word": "cucumber", - "definition": "n.[植]黄瓜" - }, - { - "word": "culminate", - "definition": "v.达到顶点" - }, - { - "word": "culture", - "definition": "n.文化,文明" - }, - { - "word": "cumulative", - "definition": "adj.累积的" - }, - { - "word": "curb", - "definition": "n.路边" - }, - { - "word": "current", - "definition": "adj.当前的,通用的,流通的,现在的,草写的,最近的;n.涌流,趋势,电流,水流,气流" - }, - { - "word": "curse", - "definition": "n.诅咒,咒语,祸根,祸因;vt.诅咒,咒骂,降祸,使受罪" - }, - { - "word": "customary", - "definition": "adj.习惯的,惯例的" - }, - { - "word": "cute", - "definition": "adj.可爱的,聪明的,伶俐的,装腔作势的" - }, - { - "word": "cycle", - "definition": "n.周期,循环,自行车,一段时间,整套,(电学)周波;vi.循环,轮转,骑自行车;vt.使循环,使轮转" - }, - { - "word": "cylinder", - "definition": "n.圆筒,圆柱体,汽缸,柱面" - }, - { - "word": "cynical", - "definition": "adj.愤世嫉俗的" - }, - { - "word": "dart", - "definition": "n.标枪,镖,(昆虫的)刺,飞快的动作;v.飞奔,投掷" - }, - { - "word": "database", - "definition": "n.[计]数据库,资料库" - }, - { - "word": "dazzle", - "definition": "v.(使)眼花,眩耀;n.耀眼" - }, - { - "word": "deadline", - "definition": "n.最终期限" - }, - { - "word": "deadly", - "definition": "adj.致命的,势不两立的,死一般的,极度的,必定的" - }, - { - "word": "dean", - "definition": "n.(大学)院长,主持牧师,(基督教)教长" - }, - { - "word": "debate", - "definition": "v.争论,辩论;n.争论,辩论" - }, - { - "word": "decade", - "definition": "n.十年,十" - }, - { - "word": "decay", - "definition": "vi.&n.腐朽,腐烂,衰减,衰退;v.衰落" - }, - { - "word": "deceive", - "definition": "v.欺骗,行骗" - }, - { - "word": "decent", - "definition": "adj.正派的,端庄的,有分寸的,(服装)得体的,大方的;adj.<口>相当好的、象样的" - }, - { - "word": "decimal", - "definition": "adj.十进的,小数的,以十为基础的,十进制;n.小数" - }, - { - "word": "decisive", - "definition": "adj.决定性的" - }, - { - "word": "decorate", - "definition": "v.装饰,为...做室内装修" - }, - { - "word": "decrease", - "definition": "n.减少,减少之量;v.减少" - }, - { - "word": "decree", - "definition": "n.法令,政令,教令,天命,判决;v.颁布" - }, - { - "word": "dedicate", - "definition": "vt.献(身),致力,题献(一部著作给某人)" - }, - { - "word": "deduce", - "definition": "vt.推论,演绎出" - }, - { - "word": "deduct", - "definition": "vt.扣除,演绎" - }, - { - "word": "deem", - "definition": "v.认为,相信" - }, - { - "word": "default", - "definition": "n.默认(值),缺省(值),食言,不履行责任,[律]缺席;v.疏怠职责,缺席,拖欠,默认" - }, - { - "word": "defeat", - "definition": "n.击败,战胜,失败;vt.击败,战胜,使失败,挫折;v.击败" - }, - { - "word": "defect", - "definition": "n.过失,缺点" - }, - { - "word": "defendant", - "definition": "n.被告;adj.辩护的,为自己辩护的" - }, - { - "word": "defiance", - "definition": "n.挑战,蔑视,挑衅" - }, - { - "word": "deficiency", - "definition": "n.缺乏,不足" - }, - { - "word": "deficit", - "definition": "n.赤字,不足额" - }, - { - "word": "define", - "definition": "vt.定义,详细说明" - }, - { - "word": "definitely", - "definition": "adv.明确地,干脆地" - }, - { - "word": "definition", - "definition": "n.定义,解说,精确度,(轮廓影像等的)清晰度" - }, - { - "word": "definitive", - "definition": "adj.最后的,确定的,权威性的" - }, - { - "word": "defy", - "definition": "vt.不服从,公然反抗,藐视,挑衅,违抗,使...难于;n.挑战" - }, - { - "word": "degenerate", - "definition": "adj.退化的;v.退化" - }, - { - "word": "degrade", - "definition": "v.(使)降级,(使)堕落,(使)退化" - }, - { - "word": "deliberate", - "definition": "adj.深思熟虑的,故意的,预有准备的;v.商讨" - }, - { - "word": "delicate", - "definition": "adj.精巧的,精致的,病弱的,脆弱的,微妙的,棘手的,灵敏的,精密的" - }, - { - "word": "demand", - "definition": "n.要求,需求(量),需要;v.要求,需要,要求知道,查询" - }, - { - "word": "demonstrate", - "definition": "vt.示范,证明,论证;vi.示威" - }, - { - "word": "denial", - "definition": "n.否认,否定,谢绝,拒绝" - }, - { - "word": "denote", - "definition": "vt.指示,表示" - }, - { - "word": "denounce", - "definition": "vt.公开指责,公然抨击,谴责" - }, - { - "word": "dentist", - "definition": "n.牙科医生" - }, - { - "word": "deny", - "definition": "v.否认,拒绝" - }, - { - "word": "depict", - "definition": "vt.描述,描写" - }, - { - "word": "deport", - "definition": "vt.举止,驱逐" - }, - { - "word": "depress", - "definition": "vt.使沮丧,使消沉,压下,压低,使不活泼,使萧条;v.压下" - }, - { - "word": "depression", - "definition": "n.沮丧,消沉,低气压,低压" - }, - { - "word": "deprive", - "definition": "vt.剥夺,使丧失" - }, - { - "word": "derive", - "definition": "vt.得自;vi.起源" - }, - { - "word": "descend", - "definition": "vi.下来,下降,遗传(指财产,气质,权利),突击,出其不意的拜访;v.下去" - }, - { - "word": "descendant", - "definition": "n.子孙,后裔,后代" - }, - { - "word": "descent", - "definition": "n.降下,降落,世系,血统,侵袭" - }, - { - "word": "describe", - "definition": "vt.描写,记述,形容,形容;v.描述" - }, - { - "word": "deserve", - "definition": "vt.应受,值得;v.应受" - }, - { - "word": "design", - "definition": "n.设计,图案,花样,企图,图谋,(小说等的)构思,纲要;v.设计,计划,谋划,构思" - }, - { - "word": "designate", - "definition": "vt.指明,指出,任命,指派;v.指定,指派" - }, - { - "word": "desirable", - "definition": "adj.值得要的,合意的,令人想要的,悦人心意的" - }, - { - "word": "desire", - "definition": "vt.想望,期望,希望,请求(官方丈礼);n.愿望,心愿,要求;v.要求" - }, - { - "word": "despise", - "definition": "vt.轻视" - }, - { - "word": "despite", - "definition": "prep.不管,尽管,不论" - }, - { - "word": "destination", - "definition": "n.目的地,[计]目的文件,目的单元格" - }, - { - "word": "destined", - "definition": "adj.去往…的" - }, - { - "word": "destiny", - "definition": "n.命运,定数" - }, - { - "word": "destruction", - "definition": "n.破坏,毁灭" - }, - { - "word": "destructive", - "definition": "adj.破坏(性)的" - }, - { - "word": "detach", - "definition": "vt.分开,分离,分遣,派遣(军队)" - }, - { - "word": "detail", - "definition": "n.细节,详情;vt.详述,细说;" - }, - { - "word": "detain", - "definition": "v.拘留,留住,阻止" - }, - { - "word": "detect", - "definition": "vt.察觉,发觉,侦查,探测;v.发现" - }, - { - "word": "detection", - "definition": "n.察觉,发觉,侦查,探测,发现" - }, - { - "word": "detective", - "definition": "n.侦探;adj.侦探的" - }, - { - "word": "deteriorate", - "definition": "v.(使)恶化" - }, - { - "word": "deviate", - "definition": "vi.背离,偏离;v.偏离" - }, - { - "word": "device", - "definition": "n.装置,设计,图案,策略,发明物,设备;[计]安装设备驱动程序" - }, - { - "word": "devise", - "definition": "vt.设计,发明,图谋,作出(计划),想出(办法),遗赠给;n.遗赠" - }, - { - "word": "devote", - "definition": "vt.投入于,献身" - }, - { - "word": "diagnose", - "definition": "v.诊断" - }, - { - "word": "dictate", - "definition": "v.口述,口授,使听写,指令,指示,命令,规定;n.指示(指理智,变心)" - }, - { - "word": "differentiate", - "definition": "v.区别,区分" - }, - { - "word": "digest", - "definition": "v.散播,传播,漫射,扩散,(使)慢慢混合;adj.散开的,弥漫的" - }, - { - "word": "diffuse", - "definition": "n.分类,摘要;vi.消化;vt.消化,融会贯通" - }, - { - "word": "dignity", - "definition": "n.尊严,高贵" - }, - { - "word": "dilemma", - "definition": "n.进退两难的局面,困难的选择" - }, - { - "word": "diligent", - "definition": "adj.勤勉的,用功的,细心而继续不断的" - }, - { - "word": "dilute", - "definition": "v.冲淡,变淡,变弱,稀释;adj.淡的,弱的,稀释的" - }, - { - "word": "dim", - "definition": "adj.暗淡的,模糊的,无光泽的,悲观的,怀疑的;vt.使暗淡,使失去光泽;n.<美俚>笨蛋、傻子" - }, - { - "word": "dimension", - "definition": "n.尺寸,尺度,维(数),度(数),元" - }, - { - "word": "diminish", - "definition": "v.(使)减少,(使)变小" - }, - { - "word": "dine", - "definition": "vi.吃饭,进餐" - }, - { - "word": "diploma", - "definition": "n.文凭,毕业证书,证明权力、特权、荣誉等的证书,奖状" - }, - { - "word": "diplomat", - "definition": "n.外交官,有外交手腕的人,有权谋的人" - }, - { - "word": "directory", - "definition": "n.姓名地址录,目录" - }, - { - "word": "disable", - "definition": "v.使残废,使失去能力,丧失能力" - }, - { - "word": "disaster", - "definition": "n.灾难,天灾,灾祸" - }, - { - "word": "disastrous", - "definition": "adj.损失惨重的,悲伤的" - }, - { - "word": "discard", - "definition": "vt.丢弃,抛弃;v.放弃" - }, - { - "word": "discern", - "definition": "v.目睹,认识,洞悉,辨别,看清楚" - }, - { - "word": "discharge", - "definition": "vt.卸下,放出,清偿(债务),履行(义务),解雇,开(炮),放(枪),射(箭);vi.卸货,流注;n.卸货,流出,放电" - }, - { - "word": "discipline", - "definition": "n.纪律,学科;v.训练" - }, - { - "word": "disclose", - "definition": "vt.揭露,透露" - }, - { - "word": "discount", - "definition": "n.折扣" - }, - { - "word": "discreet", - "definition": "adj.小心的,慎重的,有思虑的,贤明的" - }, - { - "word": "discrepancy", - "definition": "n.相差,差异,矛盾" - }, - { - "word": "discrete", - "definition": "adj.不连续的,离散的" - }, - { - "word": "discriminate", - "definition": "v.歧视,区别,区别待遇" - }, - { - "word": "disease", - "definition": "n.疾病,弊病" - }, - { - "word": "disguise", - "definition": "v.假装,伪装,掩饰;n.伪装" - }, - { - "word": "disgust", - "definition": "n.厌恶,嫌恶;vi.令人厌恶,令人反感;vt.使作呕" - }, - { - "word": "dismay", - "definition": "n.沮丧,惊慌;v.使沮丧,使惊慌" - }, - { - "word": "dismiss", - "definition": "vt.解散,下课,开除,解职,使(或让)离开;vi.解散" - }, - { - "word": "disorder", - "definition": "n.杂乱,混乱,无秩序状态;vt.扰乱,使失调,使紊乱" - }, - { - "word": "dispatch", - "definition": "vt.分派,派遣;n.派遣,急件" - }, - { - "word": "disperse", - "definition": "v.(使)分散,(使)散开,疏散" - }, - { - "word": "displace", - "definition": "vt.移置,转移,取代,置换;v.转移" - }, - { - "word": "display", - "definition": "vt.陈列,展览,显示;n.陈列,展览,显示,显示器" - }, - { - "word": "disposal", - "definition": "n.处理,处置,布置,安排,配置,支配" - }, - { - "word": "dispose", - "definition": "v.处理,处置,部署;vt.布置,安排,除去,使愿意" - }, - { - "word": "disposition", - "definition": "n.部署" - }, - { - "word": "disregard", - "definition": "v.不理漠视;n.漠视,忽视" - }, - { - "word": "disrupt", - "definition": "v.使中断,使分裂,使瓦解,使陷于混乱,破坏" - }, - { - "word": "dissipate", - "definition": "v.驱散,(使)(云、雾、疑虑等)消散,浪费(金钱或时间)" - }, - { - "word": "distill", - "definition": "vt.蒸馏,提取;vi.滴下" - }, - { - "word": "distinct", - "definition": "adj.清楚的,明显的,截然不同的,独特的" - }, - { - "word": "distinguish", - "definition": "v.区别,辨别" - }, - { - "word": "distort", - "definition": "vt.弄歪(嘴脸等),扭曲,歪曲(真理、事实等),误报" - }, - { - "word": "distract", - "definition": "v.转移" - }, - { - "word": "distribution", - "definition": "n.分配,分发,配给物,销售,法院对无遗嘱死亡者财产的分配,分布状态,区分,分类,发送,发行" - }, - { - "word": "disturbance", - "definition": "n.骚动,动乱,打扰,干扰,骚乱,搅动" - }, - { - "word": "diverse", - "definition": "adj.不同的,变化多的" - }, - { - "word": "diversion", - "definition": "n.转移,转换,牵制,解闷,娱乐" - }, - { - "word": "divert", - "definition": "v.转移,转向,使高兴" - }, - { - "word": "divine", - "definition": "adj.神的,神圣的,非凡的,超人的,非常可爱的;n.牧师" - }, - { - "word": "divorce", - "definition": "n.离婚,脱离;vt.使离婚,与...脱离" - }, - { - "word": "dizzy", - "definition": "adj.(指人)晕眩的,昏乱的,(指地点,情况)使人晕眩的" - }, - { - "word": "dock", - "definition": "n.<美>码头,船坞,被告席,尾巴的骨肉部分;vt.靠码头,引入坞,剪短;vi.入船坞" - }, - { - "word": "doctrine", - "definition": "n.教条,学说" - }, - { - "word": "dodge", - "definition": "v.避开,躲避;n.<俗>诡计,躲藏" - }, - { - "word": "dole", - "definition": "n.施舍品,悲哀,失业救济金;vt.发放救济" - }, - { - "word": "dolphin", - "definition": "n.海豚" - }, - { - "word": "domain", - "definition": "n.领土,领地,(活动、学问等的)范围,领域" - }, - { - "word": "dome", - "definition": "n.圆屋顶" - }, - { - "word": "domestic", - "definition": "adj.家庭的,国内的,与人共处的,驯服的" - }, - { - "word": "dominant", - "definition": "adj.有统治权的,占优势的,支配的;adj.[生物]显性的" - }, - { - "word": "dominate", - "definition": "v.支配,占优势" - }, - { - "word": "donate", - "definition": "v.捐赠,赠予" - }, - { - "word": "donation", - "definition": "n.捐赠品,捐款,贡献" - }, - { - "word": "doom", - "definition": "n.厄运,毁灭,死亡,世末日;v.注定,判决;著名的3D动作游戏" - }, - { - "word": "doubtless", - "definition": "adj.无疑的,确定的;adv.无疑地,确定地,<口>大概、多半" - }, - { - "word": "draft", - "definition": "n.草稿,草案,草图;vt.起草,为...打样,设计;v.草拟" - }, - { - "word": "drag", - "definition": "v.拖,拖曳,缓慢而费力地行动;n.拖拉" - }, - { - "word": "drain", - "definition": "n.排水沟,消耗,排水;vt.排出沟外,喝干,耗尽;vi.排水,流干" - }, - { - "word": "drainage", - "definition": "n.排水,排泄,排水装置,排水区域,排出物,消耗" - }, - { - "word": "dramatic", - "definition": "adj.戏剧性的,生动的" - }, - { - "word": "drastic", - "definition": "adj.激烈的,(药性等)猛烈的" - }, - { - "word": "drawback", - "definition": "n.缺点,障碍,退还的关税,退税(指进口货物再出口时退还其进口时的关税)" - }, - { - "word": "dread", - "definition": "n.恐惧,恐怖,可怕的人(或物),畏惧;v.惧怕,担心" - }, - { - "word": "dreadful", - "definition": "adj.可怕的,<口>讨厌的" - }, - { - "word": "drill", - "definition": "n.钻孔机,钻子,播种机,军事训练,操练,(反复)练习,条播机;v.训练,钻孔,条播" - }, - { - "word": "drought", - "definition": "n.干旱,缺乏" - }, - { - "word": "dual", - "definition": "adj.双的,二重的,双重" - }, - { - "word": "dub", - "definition": "vt.[电影]配音,轻点,授予称号,打击;n.鼓声,笨蛋" - }, - { - "word": "dubious", - "definition": "adj.可疑的,不确定的" - }, - { - "word": "duplicate", - "definition": "adj.复制的,副的,两重的,两倍的,完全相同;n.复制品,副本;vt.复写,复制,使加倍,使成双" - }, - { - "word": "dwarf", - "definition": "n.矮子,侏儒;v.(使)变矮小" - }, - { - "word": "dwell", - "definition": "vi.居住,踌躇" - }, - { - "word": "eagle", - "definition": "n.鹰,鹰状标饰" - }, - { - "word": "Easter", - "definition": "n.[宗](耶稣)复活节" - }, - { - "word": "eccentric", - "definition": "adj.古怪;n.行为古怪的人" - }, - { - "word": "eclipse", - "definition": "n.食,日蚀,月蚀,蒙蔽,衰落;vt.引起日蚀,引起月蚀,超越,使黯然失色" - }, - { - "word": "ecology", - "definition": "n.生态学,[社会]环境适应学,均衡系统" - }, - { - "word": "economic", - "definition": "adj.经济(上)的,产供销的,经济学的" - }, - { - "word": "economical", - "definition": "adj.节约的,经济的" - }, - { - "word": "economy", - "definition": "n.经济,节约,节约措施,经济实惠,系统,机体,经济制度的状况" - }, - { - "word": "edible", - "definition": "adj.可食用的" - }, - { - "word": "effective", - "definition": "adj.有效的,被实施的,给人深刻印象,有生力量" - }, - { - "word": "efficiency", - "definition": "n.效率,功效" - }, - { - "word": "efficient", - "definition": "adj.(直接)生效的,有效率的,能干的" - }, - { - "word": "ego", - "definition": "n.自我,利已主义,自负" - }, - { - "word": "eject", - "definition": "vt.逐出,撵出,驱逐,喷射;n.推断的事物" - }, - { - "word": "elaborate", - "definition": "adj.精心制作的,详细阐述的,精细;vt.精心制作,详细阐述;v.详细描述" - }, - { - "word": "elapse", - "definition": "vi.(时间)过去,消逝;v.流逝" - }, - { - "word": "elastic", - "definition": "adj.弹性的" - }, - { - "word": "electric", - "definition": "adj.电的,导电的,电动的,电气" - }, - { - "word": "electrical", - "definition": "adj.电的,有关电的" - }, - { - "word": "electrician", - "definition": "n.电工,电学家" - }, - { - "word": "electricity", - "definition": "n.电流,电,电学" - }, - { - "word": "electron", - "definition": "n.电子" - }, - { - "word": "electronic", - "definition": "adj.电子的" - }, - { - "word": "elegant", - "definition": "adj.文雅的,端庄的,雅致的,<口>上品的,第一流的" - }, - { - "word": "element", - "definition": "n.要素,元素,成分,元件,自然环境" - }, - { - "word": "elementary", - "definition": "adj.初步的,基本的,[化]元素的,自然力的" - }, - { - "word": "elevate", - "definition": "vt.举起,提拔,振奋,提升...的职位" - }, - { - "word": "elicit", - "definition": "vt.得出,引出,抽出,引起" - }, - { - "word": "eligible", - "definition": "adj.符合条件的,合格的" - }, - { - "word": "eliminate", - "definition": "vt.排除,消除;v.除去" - }, - { - "word": "elite", - "definition": "n.<法>[集合名词]精华,精锐,中坚分子" - }, - { - "word": "eloquent", - "definition": "adj.雄辩的,有口才的,动人的,意味深长的" - }, - { - "word": "embark", - "definition": "v.上船,上飞机,着手,从事,装于船上,登上" - }, - { - "word": "embarrass", - "definition": "vt.使困窘,使局促不安,阻碍,麻烦" - }, - { - "word": "embed", - "definition": "vt.使插入,使嵌入,深留,嵌入,[医]包埋" - }, - { - "word": "embody", - "definition": "vt.具体表达,使具体化,包含,收录" - }, - { - "word": "emerge", - "definition": "vi.显现,浮现,暴露,形成,(由某种状态)脱出,(事实)显现出来" - }, - { - "word": "emergency", - "definition": "n.紧急情况,突然事件,非常时刻,紧急事件" - }, - { - "word": "emotion", - "definition": "n.情绪,情感,感情" - }, - { - "word": "emphasis", - "definition": "n.强调,重点" - }, - { - "word": "emphasize", - "definition": "vt.强调,着重;v.强调" - }, - { - "word": "empirical", - "definition": "adj.完全根据经验的,经验主义的,[化]实验式" - }, - { - "word": "employment", - "definition": "n.雇用,使用,利用,工作,职业" - }, - { - "word": "enclosure", - "definition": "n.围住,围栏,四周有篱笆或围墙的场地" - }, - { - "word": "encounter", - "definition": "v.遭遇,遇到,相遇;n.遭遇,遭遇战" - }, - { - "word": "encourage", - "definition": "vt.鼓励,怂恿;v.鼓励,鼓励" - }, - { - "word": "endeavor", - "definition": "n.努力,尽力;vi.尽力,努力" - }, - { - "word": "endow", - "definition": "v.捐赠,赋予" - }, - { - "word": "endurance", - "definition": "n.忍耐(力),持久(力),耐久(性)" - }, - { - "word": "endure", - "definition": "v.耐久,忍耐" - }, - { - "word": "energetic", - "definition": "adj.精力充沛的,积极的" - }, - { - "word": "enforce", - "definition": "vt.强迫,执行,坚持,加强" - }, - { - "word": "engage", - "definition": "vt.使忙碌,雇佣,预定,使从事于,使参加;vi.答应,从事,交战,[机]接合,啮合" - }, - { - "word": "engagement", - "definition": "n.约会,婚约,诺言,交战,接站,雇拥,[机]接合" - }, - { - "word": "engine", - "definition": "n.发动机,机车,火车头" - }, - { - "word": "enhance", - "definition": "vt.提高,增强;v.提高" - }, - { - "word": "enlighten", - "definition": "vt.启发,启蒙,教导,授予...知识,开导,<古>照耀" - }, - { - "word": "enormous", - "definition": "adj.巨大的,庞大的,<古>极恶的,凶暴的" - }, - { - "word": "enrich", - "definition": "vt.使富足,使肥沃,装饰,加料于,浓缩" - }, - { - "word": "enroll", - "definition": "v.[亦作enrol]登记,招收,使入伍(或入会、入学等),参加,成为成员" - }, - { - "word": "ensue", - "definition": "vi.跟着发生,继起;vt.(基督教《圣经》用语)追求" - }, - { - "word": "entail", - "definition": "vt.使必需,使蒙受,使承担,遗传给;n.[建]限定继承权" - }, - { - "word": "entertainment", - "definition": "n.款待,娱乐,娱乐表演" - }, - { - "word": "enthusiasm", - "definition": "n.狂热,热心,积极性,激发热情的事物" - }, - { - "word": "enthusiastic", - "definition": "adj.热心的,热情的" - }, - { - "word": "entitle", - "definition": "vt.给...权利(或资格),给...题名,给...称号;v.授权,授权" - }, - { - "word": "entity", - "definition": "n.实体" - }, - { - "word": "entrepreneur", - "definition": "n.<法>企业家,主办人" - }, - { - "word": "environment", - "definition": "n.环境,外界" - }, - { - "word": "envisage", - "definition": "v.正视" - }, - { - "word": "epoch", - "definition": "n.新纪元,时代,时期,时间上的一点,[地质]世" - }, - { - "word": "equality", - "definition": "n.等同性,同等,平等,相等,等式" - }, - { - "word": "equator", - "definition": "n.赤道,赤道似的圈.圆" - }, - { - "word": "equip", - "definition": "vt.装备,配备,训练,准备行装" - }, - { - "word": "equivalent", - "definition": "adj.相等的,相当的,同意义的;n.等价物,相等物" - }, - { - "word": "erect", - "definition": "adj.直立的,竖立的,笔直的;vt.盖,使竖立,使直立,树立,建立;vi.[生理]勃起" - }, - { - "word": "erosion", - "definition": "n.腐蚀,侵蚀" - }, - { - "word": "erroneous", - "definition": "adj.错误的,不正确的" - }, - { - "word": "erupt", - "definition": "vt.喷出;vi.爆发" - }, - { - "word": "escort", - "definition": "n.护卫(队),护送,陪同(人员),护卫队;v.护卫,护送,陪同" - }, - { - "word": "essence", - "definition": "n.基本,[哲]本质,香精" - }, - { - "word": "essential", - "definition": "adj.本质的,实质的,基本的,提炼的,精华的;n.本质,实质,要素,要点" - }, - { - "word": "establish", - "definition": "vt.建立,设立,安置,使定居,使人民接受,确定;v.建立" - }, - { - "word": "esthetic", - "definition": "adj.感觉的" - }, - { - "word": "estimate", - "definition": "v.&n.估计,估价,评估" - }, - { - "word": "eternal", - "definition": "adj.永恒的,永远的,不灭的,没完没了的" - }, - { - "word": "ethnic", - "definition": "adj.人种的,种族的,异教徒的" - }, - { - "word": "evaluate", - "definition": "vt.评价,估计,求...的值;v.评价" - }, - { - "word": "evidence", - "definition": "n.明显,显著,明白,迹象,根据,[物]证据,证物" - }, - { - "word": "evident", - "definition": "adj.明显的,显然的" - }, - { - "word": "evil", - "definition": "adj.邪恶的,带来麻烦的,不幸的,有害的,诽谤的;n.邪恶,不幸,罪恶" - }, - { - "word": "evoke", - "definition": "vt.唤起,引起,博得" - }, - { - "word": "evolution", - "definition": "n.进展,发展,演变,进化" - }, - { - "word": "exaggerate", - "definition": "v.夸大,夸张" - }, - { - "word": "exceed", - "definition": "vt.超越,胜过;vi.超过其他" - }, - { - "word": "exception", - "definition": "n.除外,例外,反对,异议" - }, - { - "word": "exceptional", - "definition": "adj.例外的,异常的" - }, - { - "word": "excess", - "definition": "n.过度,剩于,无节制,超过,超额;adj.过度的,额外的" - }, - { - "word": "excessive", - "definition": "adj.过多的,过分的,额外" - }, - { - "word": "exchange", - "definition": "vt.交换,调换,兑换,交流,交易;n.交换,调换,兑换,交流,交易" - }, - { - "word": "exclaim", - "definition": "v.呼喊,惊叫,大声叫" - }, - { - "word": "exclude", - "definition": "vt.拒绝接纳,把...排除在外,排斥" - }, - { - "word": "exclusive", - "definition": "adj.排外的,孤高的,唯我独尊的,独占的,唯一的,高级的" - }, - { - "word": "excursion", - "definition": "n.远足,游览,短程旅行,远足队,离题,[物]偏移,漂移" - }, - { - "word": "execute", - "definition": "vt.执行,实行,完成,处死,制成,[律]经签名盖章等手续使(证书)生效" - }, - { - "word": "execution", - "definition": "n.实行,完成,执行,死刑,制作,(武器等的)破坏效果,杀伤力" - }, - { - "word": "executive", - "definition": "adj.实行的,执行的,行政的;n.执行者,经理主管人员" - }, - { - "word": "exemplify", - "definition": "vt.例证,例示,作为...例子" - }, - { - "word": "exempt", - "definition": "v.免除;adj.被免除的" - }, - { - "word": "exert", - "definition": "vt.尽(力),施加(压力等),努力;v.发挥,竭尽全力,尽" - }, - { - "word": "exhaust", - "definition": "vt.用尽,耗尽,抽完,使筋疲力尽;vi.排气;n.排气,排气装置;adj.用不完的,不会枯竭的" - }, - { - "word": "exhibit", - "definition": "vt.展出,陈列;n.展览品,陈列品,展品;v.展示" - }, - { - "word": "exile", - "definition": "n.放逐,充军,流放,流犯,被放逐者;vt.放逐,流放,使背井离乡" - }, - { - "word": "existence", - "definition": "n.存在,实在,生活,存在物,实在物" - }, - { - "word": "exotic", - "definition": "adj.异国情调的,外来的,奇异的" - }, - { - "word": "expand", - "definition": "vt.使膨胀,详述,扩张;vi.张开,发展" - }, - { - "word": "expansion", - "definition": "n.扩充,开展,膨胀,扩张物,辽阔,浩瀚" - }, - { - "word": "expedition", - "definition": "n.远征,探险队,迅速,派遣" - }, - { - "word": "expel", - "definition": "v.驱逐,开除,排出,发射" - }, - { - "word": "expend", - "definition": "vt.花费,消耗,支出,[海]把(暂时不用的绳)绕在杆上" - }, - { - "word": "expenditure", - "definition": "n.支出,花费" - }, - { - "word": "expense", - "definition": "n.费用,代价,损失,开支,费钱之物" - }, - { - "word": "expert", - "definition": "n.专家,行家,[军](特等)射手;adj.老练的,内行的,专门的;vt.在...中当行家,当专家" - }, - { - "word": "expertise", - "definition": "n.专家的意见,专门技术" - }, - { - "word": "expire", - "definition": "v.期满,终止,呼气,断气,届满" - }, - { - "word": "explicit", - "definition": "adj.外在的,清楚的,直率的,(租金等)直接付款的" - }, - { - "word": "exploit", - "definition": "vt.开拓,开发,开采,剥削,用以自肥;v.使用" - }, - { - "word": "explore", - "definition": "v.探险,探测,探究" - }, - { - "word": "expose", - "definition": "vt.使暴露,受到,使曝光;v.揭露" - }, - { - "word": "exposition", - "definition": "n.博览会,展览会,说明,曝露,[戏]展示部分,[音]呈示部" - }, - { - "word": "expression", - "definition": "n.表达,表情,脸色,声调,腔调,榨出,语法,措辞;n.[数]式,表达式,符号" - }, - { - "word": "exquisite", - "definition": "adj.优美的,高雅的,精致的,剧烈的,异常的,细腻的,敏锐的" - }, - { - "word": "extensive", - "definition": "adj.广大的,广阔的,广泛的" - }, - { - "word": "extent", - "definition": "n.广度,宽度,长度,范围,程度,区域,[律]<英>扣押,<美>临时所有权令" - }, - { - "word": "external", - "definition": "adj.外部的,客观的,[医]外用的,外国的,表面的;n.外部,外面" - }, - { - "word": "extinct", - "definition": "adj.熄灭的,灭绝的,耗尽的;vt.<古>使熄灭" - }, - { - "word": "extinguish", - "definition": "vt.熄灭,消灭,压制,使黯然失色,偿清" - }, - { - "word": "extract", - "definition": "n.精,汁,榨出物,摘录,选粹;vt.拔出,榨取,开方,求根,摘录,析取,吸取" - }, - { - "word": "extraordinary", - "definition": "adj.非常的,特别的,非凡的,特派的" - }, - { - "word": "extravagant", - "definition": "adj.奢侈的,浪费的,过分的,放纵的" - }, - { - "word": "extreme", - "definition": "adj.尽头的,极端的,极度的,偏激的,最后的;n.极端,极端的事物" - }, - { - "word": "fabric", - "definition": "n.织品,织物,布,结构,建筑物,构造" - }, - { - "word": "fabricate", - "definition": "vt.制作,构成,捏造,伪造,虚构" - }, - { - "word": "facet", - "definition": "n.(多面体的)面,(宝石等的)刻面,小平面,方面,琢面;vt.在...上刻画" - }, - { - "word": "facilitate", - "definition": "vt.(不以人作主语的)使容易,使便利,推动,帮助,使容易,促进" - }, - { - "word": "factor", - "definition": "n.因素,要素,因数,代理人" - }, - { - "word": "faculty", - "definition": "n.才能,本领,能力,全体教员,(大学的)系,科,(授予的)权力" - }, - { - "word": "faith", - "definition": "n.信任,信念,宗教信仰,忠实,保证,诺言,约定" - }, - { - "word": "fake", - "definition": "n.假货,欺骗;adj.假的;vt.伪造,赝造,捏造,假造,仿造;vi.伪装" - }, - { - "word": "famine", - "definition": "n.饥荒,<古>饥饿,严重的缺乏" - }, - { - "word": "fantastic", - "definition": "adj.幻想的,奇异的,稀奇古怪的,荒谬的,空想的" - }, - { - "word": "fantasy", - "definition": "n.幻想,白日梦" - }, - { - "word": "fascinate", - "definition": "vt.使着迷,使神魂颠倒;vi.入迷,极度迷人的" - }, - { - "word": "fatal", - "definition": "adj.致命的,重大的,命运注定的,不幸的,致命的,毁灭性的" - }, - { - "word": "fatigue", - "definition": "n.疲乏,疲劳,累活,[军]杂役;vt.使疲劳,使心智衰弱;vi.疲劳" - }, - { - "word": "feasible", - "definition": "adj.可行的,切实可行的" - }, - { - "word": "feast", - "definition": "n.节日,盛宴,筵席,宴会,酒席;vt.盛宴,款待,享乐,请客;vi.参加宴会,享受" - }, - { - "word": "feature", - "definition": "n.面貌的一部分(眼,口,鼻等)特征,容貌,特色,特写;vt.是...的特色,特写,放映;vi.起重要作用" - }, - { - "word": "federal", - "definition": "adj.联邦的,联合的,联邦制的,同盟的;n.(南北战争)北部联邦同盟盟员;连邦软件公司,国内正版经销商" - }, - { - "word": "federation", - "definition": "n.同盟,联邦,联合,联盟" - }, - { - "word": "feeble", - "definition": "adj.虚弱的,衰弱的,无力的,微弱的,薄弱的" - }, - { - "word": "fellowship", - "definition": "n.伙伴关系,交情,团体,奖学金,友谊" - }, - { - "word": "feminine", - "definition": "adj.妇女(似)的,娇柔的,阴性的,女性的" - }, - { - "word": "ferry", - "definition": "n.摆渡,渡船,渡口;vt.渡运,(乘渡船)渡过,运送;vi.摆渡,(船)来往行驶" - }, - { - "word": "fertilizer", - "definition": "n.肥料(尤指化学肥料),[动]受精媒介物" - }, - { - "word": "fiction", - "definition": "n.虚构,编造,小说" - }, - { - "word": "figure", - "definition": "n.外形,体形,图形,画像,数字,形状,身份;vt.描绘,塑造,表示,象征,演算,认为;vi.出现,考虑,出名,扮演角色" - }, - { - "word": "finance", - "definition": "n.财政,金融,财政学;vt.供给...经费,负担经费;vi.筹措资金" - }, - { - "word": "financial", - "definition": "adj.财政的,金融的" - }, - { - "word": "finite", - "definition": "adj.有限的,[数]有穷的,限定的" - }, - { - "word": "fitting", - "definition": "adj.适合的,相称的,适宜的;n.试穿,试衣,装配,装置" - }, - { - "word": "fixture", - "definition": "n.固定设备,预定日期,比赛时间,[机]装置器,工作夹具" - }, - { - "word": "flank", - "definition": "n.腰窝,侧面,军队侧翼,侧腹,胁,腰窝肉;vt.在...的侧面,侧翼包围,守侧面;vi.侧面与...相接" - }, - { - "word": "flap", - "definition": "n.拍打,拍打声,副翼;v.拍打,鼓翼而飞,飘动,拉下(帽)的边,扔,掷" - }, - { - "word": "flare", - "definition": "n.闪光,闪耀;vi.闪光,突然烧起来,闪耀;vt.使闪耀,使张开" - }, - { - "word": "flask", - "definition": "n.瓶,长颈瓶,细颈瓶,烧瓶,小水瓶" - }, - { - "word": "flat", - "definition": "adj.平坦的,扁平的,单调的,干脆的,无聊的;adv.平直地,正好,断然地;n.平面,一层,公寓;v.(使)变平,(使)降半音" - }, - { - "word": "flatter", - "definition": "vt.过分夸赞,奉承,阿谀,使高兴,使满意,(画,肖像上的形象)胜过(真人或实物)" - }, - { - "word": "flaw", - "definition": "n.缺点,裂纹,瑕疵,一阵狂风;vt.使破裂,使有缺陷,使无效;vi.生裂缝,变的有缺陷" - }, - { - "word": "flexible", - "definition": "adj.柔韧性,易曲的,灵活的,柔软的,能变形的,可通融的" - }, - { - "word": "fling", - "definition": "n.投,掷,猛冲,暴躁的行动,急冲,嘲弄,讥笑;vt.猛投,抛,掷,使陷入,挥动,嘲笑,扫视;vi.猛冲,直冲,急行" - }, - { - "word": "flip", - "definition": "vt.掷,弹,轻击,鞭等抽打,空翻;vi.用指轻弹,抽打,翻书页(或纸张),蹦跳;n.抛,弹,筋斗;adj.无礼的,冒失的,轻率的" - }, - { - "word": "float", - "definition": "n.漂流物,浮舟,浮萍,彩车;vi.浮动,飘浮,散播,摇摆,(计划等)付诸实行;vt.使漂浮,容纳,淹没,发行,用水注满" - }, - { - "word": "fluctuate", - "definition": "vi.变动,波动,涨落,上下,动摇;vt.使动摇,使波动,使起伏" - }, - { - "word": "flush", - "definition": "n.奔流,晕红,激动,萌芽,活力旺盛,发烧,一手同花的五张牌,惊鸟;adj.挥霍的,直接的,丰足的,泛滥的;adv.齐平地,直接地;vi.(脸)发红,奔涌,充沛,惊飞;vt.淹没,冲洗,使脸红,使齐平,使惊飞,使激动" - }, - { - "word": "flutter", - "definition": "n.摆动,鼓翼,烦扰;vi.鼓翼,飘动,悸动,乱跳,烦扰;vt.拍(翅),使焦急" - }, - { - "word": "foam", - "definition": "n.泡沫,水沫,泡沫材料,泡沫橡皮,泡沫塑料;vi.起泡沫,冒汗水,吐白沫;vt.使起泡沫" - }, - { - "word": "focus", - "definition": "n.(兴趣活动)中心,焦点,焦距,[医]病灶,地],震源;vi.聚焦,注视;vt.使集中,在焦点上,定焦点,调焦,集中" - }, - { - "word": "foil", - "definition": "n.箔,金属薄片,[建]叶形片,烘托,衬托;vt.衬托,阻止,挡开,挫败,贴箔于" - }, - { - "word": "fold", - "definition": "n.折,羊栏,折痕,信徒;vt.折叠,包,合拢,抱住,笼罩,调入,交迭;vi.折叠起来,彻底失败" - }, - { - "word": "force", - "definition": "n.力量,武力,精力,魄力,势力,暴力,[复]军队,影响力;vt.强制,强加,(用武力)夺取,使,推动,施加压力" - }, - { - "word": "foremost", - "definition": "adj.(位置或时间)最先的,最初的,最重要的;adv.首要地,首先" - }, - { - "word": "foresee", - "definition": "vt.预见,预知" - }, - { - "word": "forge", - "definition": "v.稳步前进,铸造,伪造" - }, - { - "word": "formal", - "definition": "adj.外形的,正式的,合礼仪的,形式的,整齐匀称的;n.正式的社交活动" - }, - { - "word": "format", - "definition": "n.开本,版式,形式,格式;vt.安排...的格局(或规格),[计]格式化(磁盘)" - }, - { - "word": "formidable", - "definition": "adj.强大的,令人敬畏的,可怕的,艰难的" - }, - { - "word": "formula", - "definition": "n.公式,规则,客套语" - }, - { - "word": "formulate", - "definition": "vt.用公式表示,明确地表达,作简洁陈述;v.阐明" - }, - { - "word": "fort", - "definition": "n.堡垒,边界上的贸易站" - }, - { - "word": "forthcoming", - "definition": "adj.即将来临的;n.来临" - }, - { - "word": "forum", - "definition": "n.古罗马城镇的广场(或市场),论坛,法庭,讨论会" - }, - { - "word": "fossil", - "definition": "n.化石,僵化的事物;adj.化石的,陈腐的,守旧的" - }, - { - "word": "foster", - "definition": "vt.养育,抚育,培养,鼓励,抱(希望);n.养育者,鼓励者" - }, - { - "word": "foul", - "definition": "adj.污秽的,邪恶的,恶劣的;vt.弄脏,妨害,污蔑,犯规;vi.腐烂,犯规,缠结;n.犯规,缠绕;adv.违反规则地,不正当地" - }, - { - "word": "fraction", - "definition": "n.小部分,片断,分数" - }, - { - "word": "fracture", - "definition": "n.破裂,骨折;v.(使)破碎,(使)破裂" - }, - { - "word": "fragile", - "definition": "adj.易碎的,脆的" - }, - { - "word": "fragrance", - "definition": "n.芬芳,香气,香味" - }, - { - "word": "frantic", - "definition": "adj.狂乱的,疯狂的" - }, - { - "word": "fraud", - "definition": "n.欺骗,欺诈行为,诡计,骗子,假货" - }, - { - "word": "frequency", - "definition": "n.频率,周率,发生次数" - }, - { - "word": "frequent", - "definition": "adj.时常发生的,频繁的" - }, - { - "word": "friction", - "definition": "n.摩擦,摩擦力" - }, - { - "word": "fringe", - "definition": "n.边缘,须边,刘海;adj.边缘的,额外的;v.在...上加以缘饰,成为...的边缘" - }, - { - "word": "fuel", - "definition": "n.燃料;vt.加燃料,供以燃料;vi.得到燃料" - }, - { - "word": "fulfill", - "definition": "vt.履行,实现,完成(计划等)" - }, - { - "word": "function", - "definition": "n.官能,功能,作用,职责,典礼,仪式,[数]函数;vi.(器官等)活动,运行,行使职责" - }, - { - "word": "fund", - "definition": "n.资金,基金;v.支助,投资" - }, - { - "word": "fundamental", - "definition": "adj.基础的,基本的;n.基本原则,基本原理" - }, - { - "word": "furious", - "definition": "adj.狂怒的,狂暴的,激烈的,热烈兴奋的,极为激烈" - }, - { - "word": "furnish", - "definition": "vt.供应,提供,装备,布置;v.供给" - }, - { - "word": "furniture", - "definition": "n.家具,设备,储藏物" - }, - { - "word": "furthermore", - "definition": "adv.此外,而且" - }, - { - "word": "fury", - "definition": "n.狂怒,狂暴,激烈,狂怒的人" - }, - { - "word": "fuse", - "definition": "n.保险丝,熔丝;v.熔合" - }, - { - "word": "fusion", - "definition": "n.熔化,熔解,熔合,熔接" - }, - { - "word": "galaxy", - "definition": "n.星系,银河,一群显赫的人,一系列光彩夺目的东西" - }, - { - "word": "gamble", - "definition": "n.冒险;v.赌博,投机,孤注一掷" - }, - { - "word": "garbage", - "definition": "n.垃圾,废物" - }, - { - "word": "garment", - "definition": "n.衣服,外衣,外表" - }, - { - "word": "gasp", - "definition": "vi.喘息,气喘;vt.气吁吁地说" - }, - { - "word": "gauge", - "definition": "n.标准尺,规格,量规,量表;v.测量" - }, - { - "word": "gaze", - "definition": "v.盯,凝视;n.凝视" - }, - { - "word": "gear", - "definition": "n.齿轮,传动装置;v.调整,(使)适合,换档" - }, - { - "word": "generalize", - "definition": "vt.归纳,概括,推广,普及" - }, - { - "word": "generate", - "definition": "vt.产生,发生" - }, - { - "word": "generous", - "definition": "adj.慷慨的,大方的,有雅量的" - }, - { - "word": "genetic", - "definition": "adj.遗传的,起源的" - }, - { - "word": "genuine", - "definition": "adj.真实的,真正的,诚恳的" - }, - { - "word": "geology", - "definition": "n.地质学,地质概况" - }, - { - "word": "gigantic", - "definition": "adj.巨人般的,巨大的" - }, - { - "word": "giggle", - "definition": "v.哈哈地笑;n.傻笑" - }, - { - "word": "given", - "definition": "adj.赠予的,沉溺的,特定的,假设的;vbl.give的过去分词" - }, - { - "word": "glamour", - "definition": "n.[亦作glamor]魔力,魅力;v.迷惑" - }, - { - "word": "glance", - "definition": "vi.扫视,匆匆一看;n.一瞥,眼光,匆匆一看" - }, - { - "word": "gland", - "definition": "n.[解剖]腺,[机械]密封管" - }, - { - "word": "glare", - "definition": "n.眩目的光,显眼,怒目而视,(冰等的表面)光滑的表面;v.闪耀" - }, - { - "word": "gleam", - "definition": "n.微弱的闪光,一丝光线,瞬息的一现;vi.闪烁,隐约地闪现;vt.使发微光,使闪烁" - }, - { - "word": "glide", - "definition": "v.滑行,悄悄地走,(时间)消逝,滑翔;n.滑行,滑翔,滑移,滑音" - }, - { - "word": "glitter", - "definition": "vi.闪闪发光,闪烁,闪光;n.闪光" - }, - { - "word": "gloom", - "definition": "n.阴暗,阴沉;v.(使)变阴暗,优伤地说,繁荣" - }, - { - "word": "gloomy", - "definition": "adj.黑暗的,阴沉的,令人沮丧的,阴郁的" - }, - { - "word": "glow", - "definition": "vi.发光,发热" - }, - { - "word": "gorgeous", - "definition": "adj.华丽的,灿烂的" - }, - { - "word": "gossip", - "definition": "n.闲话,闲谈" - }, - { - "word": "gown", - "definition": "n.长袍,法衣,礼服,睡袍" - }, - { - "word": "gracious", - "definition": "adj.亲切的,和谐的;优美的;雅致的,雍容华贵的 int.(表示惊讶)天哪!" - }, - { - "word": "graduate", - "definition": "n.(大学)毕业生,研究生;v.(使)(大学)毕业" - }, - { - "word": "grain", - "definition": "n.谷物,谷类,谷粒,细粒,颗粒,粮食" - }, - { - "word": "grant", - "definition": "vt.同意,准予,承认(某事为真)~" - }, - { - "word": "graphic", - "definition": "adj.绘画似的,图解的" - }, - { - "word": "grave", - "definition": "n.墓穴,坟墓;adj.严重的,(颜色)黯淡的,(声音)低沉的;v.雕刻,铭记" - }, - { - "word": "graze", - "definition": "v.放牧,吃草,擦伤,擦过;n.放牧,牧草,轻擦,擦破处" - }, - { - "word": "grease", - "definition": "n.油脂,贿赂;vt.涂脂于,<俗>贿赂" - }, - { - "word": "grief", - "definition": "n.悲痛,伤心事,不幸,忧伤" - }, - { - "word": "grieve", - "definition": "v.(使)悲痛,(使)伤心,忧伤" - }, - { - "word": "grim", - "definition": "adj.严酷的" - }, - { - "word": "grin", - "definition": "n.露齿笑,裂口笑;v.露齿而笑" - }, - { - "word": "grip", - "definition": "vt.紧握,紧夹;n.掌握,控制,把手;v.抓住" - }, - { - "word": "groan", - "definition": "n.呻吟,叹息;vi.呻吟,受折磨,受压迫发出嘎吱声;vt.呻吟着说" - }, - { - "word": "groove", - "definition": "n.(唱片等的)凹槽,惯例,最佳状态;vt.开槽于" - }, - { - "word": "grope", - "definition": "v.n.摸索" - }, - { - "word": "gross", - "definition": "adj.总的,毛重的;n.总额" - }, - { - "word": "guarantee", - "definition": "n.保证,保证书,担保,抵押品;vt.保证,担保" - }, - { - "word": "guardian", - "definition": "n.护卫者,保护人,监护人;adj.守护的" - }, - { - "word": "hamper", - "definition": "v.妨碍,牵制" - }, - { - "word": "handbook", - "definition": "n.手册,便览" - }, - { - "word": "handicap", - "definition": "n.障碍,阻碍,障碍赛跑;v.妨碍,使不利,阻碍" - }, - { - "word": "hardy", - "definition": "adj.难的,艰苦的,勇敢的;adv.努力地,辛苦地,坚硬地" - }, - { - "word": "harmony", - "definition": "n.协调,融洽" - }, - { - "word": "hasty", - "definition": "adj.匆忙的,草率的" - }, - { - "word": "hatch", - "definition": "n.孵化,舱口,舱口盖,(门、墙壁、地板上的)开口;vt.孵,孵出,策划,图谋;vi.孵化" - }, - { - "word": "hatred", - "definition": "n.憎恨,乱意,仇恨" - }, - { - "word": "haul", - "definition": "n.用力拖,拖拉,捕获物,努力得到结果,一网捕获鱼量,拖运距离;vi.拖,拉,改变方向,改变主意;vt.拖拉,拖运" - }, - { - "word": "haunt", - "definition": "v.神鬼出没" - }, - { - "word": "hawk", - "definition": "n.鹰,掠夺他人的人,鹰派成员;vi.放鹰,像鹰一般地袭击,清嗓,咳嗽;vt.捕捉,咳出,兜售,(沿街)叫卖,散播" - }, - { - "word": "hazard", - "definition": "n.冒险,危险,冒险的事;vt.冒...的危险,赌运气,使遭危险" - }, - { - "word": "heap", - "definition": "n.堆,大量,许多;vt.堆,堆起;v.堆积" - }, - { - "word": "heave", - "definition": "v.举起;n.举起" - }, - { - "word": "heel", - "definition": "n.脚后跟,踵,跟部" - }, - { - "word": "heighten", - "definition": "v.提高,升高" - }, - { - "word": "heir", - "definition": "n.继承人,后嗣" - }, - { - "word": "hemisphere", - "definition": "n.半球" - }, - { - "word": "henceforth", - "definition": "adv.自此以后,今后" - }, - { - "word": "herb", - "definition": "n.药草,香草" - }, - { - "word": "heritage", - "definition": "n.遗产,继承权,传统" - }, - { - "word": "hesitate", - "definition": "v.犹豫,踌躇,不愿" - }, - { - "word": "hierarchy", - "definition": "n.层次,层级" - }, - { - "word": "highlight", - "definition": "n.加亮区,精彩场面,最显著(重要)部分;vt.加亮,使显著,以强光照射,突出" - }, - { - "word": "hike", - "definition": "v.远足,飞起,步行;n.远足,增加" - }, - { - "word": "hinder", - "definition": "adj.后面的;v.阻碍,打扰" - }, - { - "word": "hinge", - "definition": "n.(门、盖等的)铰链,枢纽,关键;vt.装铰链;v.装以绞链,依...而转移" - }, - { - "word": "historian", - "definition": "n.历史学家,史家" - }, - { - "word": "hitherto", - "definition": "adv.迄今,至今" - }, - { - "word": "hoist", - "definition": "n.提升间,升起" - }, - { - "word": "homogeneous", - "definition": "adj.同类的,相似的,均一的,均匀的" - }, - { - "word": "hop", - "definition": "v.单脚跳,(鸟,蛙等)跳跃;n.蛇麻草" - }, - { - "word": "hose", - "definition": "n.软管,水龙带,长筒袜;v.用软管浇水" - }, - { - "word": "hospitality", - "definition": "n.好客,宜人,盛情" - }, - { - "word": "hostage", - "definition": "n.人质,抵押品" - }, - { - "word": "hostile", - "definition": "adj.敌对的,敌方的;n.敌对" - }, - { - "word": "hound", - "definition": "n.猎犬;vt.带猎犬狩猎,卑鄙的人,追捕,激励,使追逐" - }, - { - "word": "household", - "definition": "n.一家人,家庭,家族,王室;adj.家庭的,家族的,家属的,普通的,平常的" - }, - { - "word": "hover", - "definition": "v.盘旋" - }, - { - "word": "howl", - "definition": "v.嚎叫,怒吼,嚎啕大哭,喝住,号叫;n.嚎叫,怒号,嚎哭" - }, - { - "word": "huddle", - "definition": "v.拥挤,卷缩,草率从事,挤作一团;n.杂乱的一堆,拥挤" - }, - { - "word": "hug", - "definition": "n.拥抱" - }, - { - "word": "hum", - "definition": "v.嗡嗡叫,哼;n.嗡嗡声,吵杂声" - }, - { - "word": "humanity", - "definition": "n.人性,人类,博爱,仁慈" - }, - { - "word": "humble", - "definition": "adj.卑下的,微贱的,谦逊的,粗陋的;vt.使...卑下,挫,贬抑" - }, - { - "word": "humidity", - "definition": "n.湿气,潮湿,湿度<美>沼泽中的肥沃高地" - }, - { - "word": "hurl", - "definition": "n.<俚>[棒球]用力或猛烈的投掷;vt.用力投掷,愤慨地说出,丢下,推翻;vi.猛投,猛掷" - }, - { - "word": "hurricane", - "definition": "n.飓风,狂风" - }, - { - "word": "hypothesis", - "definition": "n.假设" - }, - { - "word": "hysterical", - "definition": "a歇斯底里的,异常兴奋的" - }, - { - "word": "ideal", - "definition": "n.理想;adj.理想的,完美的,想象的,观念的,唯心论的" - }, - { - "word": "identical", - "definition": "adj.同一的,同样的" - }, - { - "word": "identification", - "definition": "n.辨认,鉴定,证明,视为同一" - }, - { - "word": "identify", - "definition": "vt.识别,鉴别,把...和...看成一样;v.确定" - }, - { - "word": "ideology", - "definition": "n.意识形态" - }, - { - "word": "idiom", - "definition": "n.成语,方言,土语,习惯用语" - }, - { - "word": "idiot", - "definition": "n.白痴,愚人,傻瓜" - }, - { - "word": "ignite", - "definition": "v.点火,点燃" - }, - { - "word": "ignore", - "definition": "vt.不理睬,忽视,[律](因证据不足而)驳回诉讼" - }, - { - "word": "illegal", - "definition": "adj.违法的,不合规定的" - }, - { - "word": "illuminate", - "definition": "vt.照明,照亮,阐明,说明,使灿烂,以灯火装饰(街道等);vi.照亮" - }, - { - "word": "illusion", - "definition": "n.幻想" - }, - { - "word": "illustrate", - "definition": "vt.举例说明,图解,加插图于,阐明;vi.举例" - }, - { - "word": "imaginary", - "definition": "adj.假想的,想象的,虚构的" - }, - { - "word": "imaginative", - "definition": "adj.想象的,虚构的" - }, - { - "word": "imitate", - "definition": "vt.模仿,仿效,仿制,仿造;v.模仿" - }, - { - "word": "imitation", - "definition": "n.模仿,效法,冒充,赝品,仿造物" - }, - { - "word": "immerse", - "definition": "vt.沉浸,使陷入" - }, - { - "word": "immigrant", - "definition": "adj.(从外国)移来的,移民的,移居的;n.移民,侨民" - }, - { - "word": "immune", - "definition": "adj.免疫的" - }, - { - "word": "impact", - "definition": "n.碰撞,冲击,冲突,影响,效果;vt.挤入,撞击,压紧,对...发生影响" - }, - { - "word": "impair", - "definition": "v.削弱" - }, - { - "word": "impart", - "definition": "vt.给予(尤指抽象事物),传授,告知,透露" - }, - { - "word": "impatient", - "definition": "adj.不耐烦的,急躁的,不耐心的" - }, - { - "word": "imperative", - "definition": "n.命令,诫命,需要,规则,祈使语气;adj.命令的,强制的,紧急的,必要的,势在必行的,[语法]祈使的" - }, - { - "word": "imperial", - "definition": "adj.皇帝的" - }, - { - "word": "impetus", - "definition": "n.推动力,促进" - }, - { - "word": "implement", - "definition": "n.工具,器具;vt.贯彻,实现;v.执行" - }, - { - "word": "implication", - "definition": "n.牵连,含意,暗示" - }, - { - "word": "implicit", - "definition": "adj.暗示的,盲从的,含蓄的,固有的,不怀疑的,绝对的" - }, - { - "word": "imply", - "definition": "vt.暗示,意味" - }, - { - "word": "impose", - "definition": "vt.征税,强加,以...欺骗;vi.利用,欺骗,施影响" - }, - { - "word": "impulse", - "definition": "n.推动,刺激,冲动,推动力;vt.推动" - }, - { - "word": "inaugurate", - "definition": "vt.举行就职典礼,创新,开辟,举行开幕(落成、成立)典礼." - }, - { - "word": "incentive", - "definition": "n.动机;adj.激励的" - }, - { - "word": "incidence", - "definition": "n.落下的方式,影响范围,[物理]入射" - }, - { - "word": "incident", - "definition": "n.事件,事变;adj.附带的,易于发生的" - }, - { - "word": "incidentally", - "definition": "adv.附带地,顺便提及" - }, - { - "word": "incline", - "definition": "n.倾斜,斜坡,斜面;vt.使倾向于,使倾斜;vi.倾向,倾斜" - }, - { - "word": "inclusive", - "definition": "adj.包含的,包括的" - }, - { - "word": "incorporate", - "definition": "adj.合并的,结社的,一体化的;vt.合并,使组成公司,具体表现;vi.合并,混合,组成公司;vt.[律]结社,成为法人组织" - }, - { - "word": "incredible", - "definition": "adj.<口>难以置信的" - }, - { - "word": "incur", - "definition": "v.招致" - }, - { - "word": "indefinite", - "definition": "adj.模糊的,不确定的,[语]不定的" - }, - { - "word": "independence", - "definition": "n.独立,自主" - }, - { - "word": "indicative", - "definition": "adj.(~of)指示的,预示的,可表示的" - }, - { - "word": "indifferent", - "definition": "adj.无关紧要的" - }, - { - "word": "indignant", - "definition": "adj.愤怒的,愤慨的" - }, - { - "word": "indignation", - "definition": "n.愤慨,义愤" - }, - { - "word": "indispensable", - "definition": "n.不可缺少之物;adj.不可缺少的,绝对必要的" - }, - { - "word": "individual", - "definition": "n.个人,个体;adj.个别的,单独的,个人的" - }, - { - "word": "induce", - "definition": "vt.劝诱,促使,导致,引起,感应" - }, - { - "word": "indulge", - "definition": "v.纵容" - }, - { - "word": "industrial", - "definition": "adj.工业的,产业的,实业的,从事工业的;n.工业工人,[商]工业股票" - }, - { - "word": "inertia", - "definition": "n.惯性,惯量" - }, - { - "word": "inevitable", - "definition": "adj.不可避免的,必然的" - }, - { - "word": "infant", - "definition": "n.婴儿,幼儿;adj.婴儿的,幼稚的" - }, - { - "word": "infectious", - "definition": "adj.有传染性的,易传染的,有感染力的" - }, - { - "word": "inferior", - "definition": "adj.下等的,下级的,差的,次的,自卑的,劣等的" - }, - { - "word": "infinite", - "definition": "n.无限的东西(如空间、时间),[数]无穷大;adj.无穷的,无限的,无数的,极大的" - }, - { - "word": "inflict", - "definition": "v.造成" - }, - { - "word": "ingenious", - "definition": "adj.机灵的,有独创性的,精制的,具有创造才能" - }, - { - "word": "ingredient", - "definition": "n.成分,因素" - }, - { - "word": "inhabit", - "definition": "vt.居住于,存在于,占据,栖息" - }, - { - "word": "inhabitant", - "definition": "n.居民,居住者" - }, - { - "word": "inherent", - "definition": "adj.固有的,内在的,与生俱来的" - }, - { - "word": "inherit", - "definition": "vt.继承,遗传而得" - }, - { - "word": "inhibit", - "definition": "抑制,约束,[化][医]抑制" - }, - { - "word": "initial", - "definition": "adj.最初的,词首的,初始的;n.词首大写字母" - }, - { - "word": "initiate", - "definition": "vt.开始,发动,传授;v.开始,发起" - }, - { - "word": "initiative", - "definition": "n.主动" - }, - { - "word": "inject", - "definition": "vt.注射,注入" - }, - { - "word": "inland", - "definition": "adj.内陆的,国内的;adv.在内地,向内地;n.内地" - }, - { - "word": "inlet", - "definition": "n.进口,入口,水湾,小港,插入物" - }, - { - "word": "innovation", - "definition": "n.改革,创新" - }, - { - "word": "innumerable", - "definition": "adj.无数的,数不清的" - }, - { - "word": "input", - "definition": "n.输入;v.输入" - }, - { - "word": "insane", - "definition": "adj.患精神病的,精神病患者的,极愚蠢的" - }, - { - "word": "insect", - "definition": "n.昆虫,卑鄙的人;adj..虫的,虫子一样的,对付虫子的" - }, - { - "word": "insert", - "definition": "vt.插入,嵌入;n.插入物" - }, - { - "word": "insight", - "definition": "n.洞察力,见识" - }, - { - "word": "insist", - "definition": "v.坚持,强调" - }, - { - "word": "inspiration", - "definition": "n.灵感" - }, - { - "word": "inspire", - "definition": "vt.吸(气),鼓舞,感动,激发,启示,使生灵感,产生;vi.吸入,赋予灵感" - }, - { - "word": "install", - "definition": "vt.安装,安置,使就职" - }, - { - "word": "installment", - "definition": "n.部分" - }, - { - "word": "instance", - "definition": "n.实例,建议,要求,情况,场合;vt.举...为例,获得例证" - }, - { - "word": "instantaneous", - "definition": "adj.瞬间的,即刻的,即时的" - }, - { - "word": "instinct", - "definition": "n.本能" - }, - { - "word": "institute", - "definition": "n.学会,学院,协会;vt.创立,开始,制定,开始(调查),提起(诉讼)" - }, - { - "word": "institution", - "definition": "n.公共机构,协会,制度" - }, - { - "word": "instruct", - "definition": "vt.教,教导,命令,指示,通知" - }, - { - "word": "instrument", - "definition": "n.工具,手段,器械,器具,手段" - }, - { - "word": "instrumental", - "definition": "adj.仪器的,器械的,乐器的" - }, - { - "word": "insulate", - "definition": "vt.使绝缘,隔离" - }, - { - "word": "insurance", - "definition": "n.保险,保险单,保险业,保险费" - }, - { - "word": "intact", - "definition": "adj.完整无缺的,尚未被人碰过的,(女子)保持童贞的,(家畜)未经阉割的" - }, - { - "word": "integral", - "definition": "adj.完整的,整体的,[数学]积分的,构成整体所需要的;n.[数学]积分,完整,部分" - }, - { - "word": "integrity", - "definition": "n.正直,诚实,完整,完全,完整性" - }, - { - "word": "intellect", - "definition": "n.智力" - }, - { - "word": "intellectual", - "definition": "adj.智力的,有智力的,显示智力的;n.知识分子" - }, - { - "word": "intelligent", - "definition": "adj.聪明的,伶俐的,有才智的,[计]智能的" - }, - { - "word": "intelligible", - "definition": "adj.可理解的" - }, - { - "word": "intense", - "definition": "adj.强烈的,剧烈的,热切的,热情的,激烈的" - }, - { - "word": "intensify", - "definition": "vt.加强;vi.强化" - }, - { - "word": "intensive", - "definition": "adj.强烈的,精深的,透彻的,[语法]加强语气的;n.加强器" - }, - { - "word": "intent", - "definition": "n.意图,目的,意向,[律](犯罪或侵权行为的)故意;adj.专心的,决心的,热心的" - }, - { - "word": "interact", - "definition": "vi.互相作用,互相影响" - }, - { - "word": "interaction", - "definition": "n.交互作用,交感" - }, - { - "word": "intercourse", - "definition": "n.交往,交流" - }, - { - "word": "interfere", - "definition": "vi.干涉,干预,妨碍,打扰" - }, - { - "word": "interim", - "definition": "adj.中间的,临时的,间歇的;n.中间时期,过渡时期,暂定" - }, - { - "word": "intermittent", - "definition": "adj.间歇的,断断续续的" - }, - { - "word": "internal", - "definition": "adj.内在的,国内的" - }, - { - "word": "interpret", - "definition": "v.解释,说明,口译,通译,认为是...的意思" - }, - { - "word": "interrupt", - "definition": "vt.打断(在说话或动作人),中断,妨碍,插嘴;vi.打断(别人的话或行动);n.(发给电脑的)中断信号" - }, - { - "word": "intersection", - "definition": "n.[数]交集,十字路口,交叉点" - }, - { - "word": "intervene", - "definition": "vi.干涉,干预,插入,介入,(指时间)介于其间;v.干涉" - }, - { - "word": "intimate", - "definition": "adj.亲密的,隐私的;vt.宣布,明白表示;n.熟友" - }, - { - "word": "intimidate", - "definition": "v.胁迫" - }, - { - "word": "intricate", - "definition": "adj.复杂的,错综的,难以理解的" - }, - { - "word": "intrigue", - "definition": "n.阴谋,诡计;vi.密谋,私通;vt.激起...的兴趣,用诡计取得" - }, - { - "word": "intrinsic", - "definition": "adj.(指价值、性质)固有的,内在的,本质的" - }, - { - "word": "intuition", - "definition": "n.直觉,直觉的知识" - }, - { - "word": "invalid", - "definition": "n.病人,残废者;adj.有病的,残废的" - }, - { - "word": "invaluable", - "definition": "adj.无价的,价值无法衡量的" - }, - { - "word": "invariably", - "definition": "adv.不变地,总是;n.总是" - }, - { - "word": "inventory", - "definition": "n.详细目录,存货,财产清册,总量" - }, - { - "word": "invert", - "definition": "adj.转化的;vt.使颠倒,使转化;n.颠倒的事物" - }, - { - "word": "invest", - "definition": "v.投(资),购买(有用之物)~,授予,投资" - }, - { - "word": "investigate", - "definition": "v.调查,研究" - }, - { - "word": "invisible", - "definition": "adj.看不见的,无形的" - }, - { - "word": "involve", - "definition": "vt.包括,笼罩,潜心于,使陷于" - }, - { - "word": "irony", - "definition": "n.反话,讽刺,讽刺之事" - }, - { - "word": "irrespective", - "definition": "adj.不顾的,不考虑的,无关的" - }, - { - "word": "irrigation", - "definition": "n.灌溉,冲洗" - }, - { - "word": "irritate", - "definition": "vt.激怒,使急躁;v.刺激" - }, - { - "word": "isle", - "definition": "n.小岛,岛;vt.使成为岛屿;vi.住在岛屿上" - }, - { - "word": "isolate", - "definition": "vt.使隔离,使孤立,使绝缘,离析;n.隔离种群" - }, - { - "word": "issue", - "definition": "n.出版,发行,论点,问题,结果,(水血)流出;vi.发行,流出,造成...结果,辩护,传下;vt.使流出,放出,发钞,发令,出书;[律]子女,后嗣" - }, - { - "word": "item", - "definition": "n.(可分类或列举的)项目,条款,(消息、情报等的)一则,一条" - }, - { - "word": "ivory", - "definition": "n.象牙" - }, - { - "word": "jeopardize", - "definition": "v.危害" - }, - { - "word": "jerk", - "definition": "n.性情古怪的人,急推,猛拉,肌肉抽搐,(生理)反射,牛肉干;vi.痉挛,急拉,颠簸地行进;vt.猛拉" - }, - { - "word": "jog", - "definition": "n.轻推,轻撞,漫步;v.轻推,(使)蹒跚行进,(使)慢跑" - }, - { - "word": "junction", - "definition": "n.连接,接合,交叉点,汇合处" - }, - { - "word": "junk", - "definition": "n.垃圾,舢板" - }, - { - "word": "jury", - "definition": "n.[律]陪审团,评判委员会,陪审员;adj.[海]临时应急的" - }, - { - "word": "keen", - "definition": "adj.锋利的,敏锐的,敏捷的,热心的,渴望的" - }, - { - "word": "kidnap", - "definition": "vt.诱拐(小孩),绑架,勒赎" - }, - { - "word": "kidney", - "definition": "n.肾,(动物可食用的)腰子,个性,性格" - }, - { - "word": "kit", - "definition": "n.成套工具,用具包,工具箱,成套用具" - }, - { - "word": "knit", - "definition": "v.编织,密接,结合" - }, - { - "word": "knob", - "definition": "n.(门,抽屉等的)球形捏手,节,瘤,旋钮,球形突出物,(煤,砂糖等的)小块;vt.使有球形突出物;vi.鼓起" - }, - { - "word": "label", - "definition": "n.标签,签条,商标,标志;vt.贴标签于,指...为,分类,标注;[计]加上或修改磁盘的标签" - }, - { - "word": "lace", - "definition": "n.饰带,花边,缎带,鞋带;vt.扎带子,扎,饰以花边;vi.缚带子" - }, - { - "word": "lame", - "definition": "adj.跛足的,僵痛的,不完全的,金属薄片,不知内情的人,(辩解、论据等)无说服力的;vi.变跛,瘸行;vt.使成残废" - }, - { - "word": "lane", - "definition": "n.(乡间)小路,巷,里弄,狭窄的通道,航线" - }, - { - "word": "lash", - "definition": "n.鞭子,鞭打,睫毛,责骂,讽刺;vt.鞭打,摆动,扎捆,冲击,煽动,讽刺;vi.猛击,急速甩动" - }, - { - "word": "latent", - "definition": "adj.潜在的,潜伏的,隐藏的;n.隐约的指印" - }, - { - "word": "latitude", - "definition": "n.纬度,范围,(用复数)地区,行动或言论的自由(范围)" - }, - { - "word": "layer", - "definition": "n.层,阶层" - }, - { - "word": "layman", - "definition": "n.外行" - }, - { - "word": "leaflet", - "definition": "n.小叶,传单" - }, - { - "word": "lease", - "definition": "n.租借,租约,租赁物,租期,延续的一段时间;vt.出租,租出,租得" - }, - { - "word": "leather", - "definition": "n.皮革,皮革制品" - }, - { - "word": "legal", - "definition": "adj.法律的,法定的,合法" - }, - { - "word": "legend", - "definition": "n.传说,伟人传,图例;联想集团,中国最大的国有品牌微机制造商之一" - }, - { - "word": "legislation", - "definition": "n.立法,法律的制定(或通过)" - }, - { - "word": "legitimate", - "definition": "adj.合法的,合理的,正统的;v.合法" - }, - { - "word": "leisure", - "definition": "n.空闲,闲暇,悠闲,安逸" - }, - { - "word": "lens", - "definition": "n.透镜,镜头" - }, - { - "word": "lever", - "definition": "n.杆,杠杆,控制杆;v.抬起" - }, - { - "word": "levy", - "definition": "n.征收,征税,征兵;v.征收,征集,征用" - }, - { - "word": "liability", - "definition": "n.责任,义务,倾向,债务,负债,与assets相对" - }, - { - "word": "liable", - "definition": "adj.有责任的,有义务的,易...的,有...倾向的,负有责任的,很有可能的" - }, - { - "word": "liberal", - "definition": "n.自由主义者,(尤指英国、加拿大等国的);adj.慷慨的,不拘泥的,宽大的,自由主义的" - }, - { - "word": "lieutenant", - "definition": "n.陆军中尉,海军上尉,副职官员" - }, - { - "word": "likelihood", - "definition": "n.可能,可能性" - }, - { - "word": "limb", - "definition": "n.肢,翼,分支" - }, - { - "word": "limitation", - "definition": "n.限制,局限性" - }, - { - "word": "limp", - "definition": "adj.柔软的,易曲的;vi.跛行" - }, - { - "word": "linear", - "definition": "adj.线的,直线的,线性的" - }, - { - "word": "linen", - "definition": "n.亚麻布,亚麻制品,亚麻纤维制成的优质纸;adj.亚麻布制的,亚麻的" - }, - { - "word": "liner", - "definition": "n.<美>班机,划线者,衬垫" - }, - { - "word": "linger", - "definition": "v.逗留,闲荡,拖延,游移" - }, - { - "word": "literacy", - "definition": "n.有文化,有教养,有读写能力" - }, - { - "word": "literal", - "definition": "adj.文字的,照字面上的,无夸张的" - }, - { - "word": "literary", - "definition": "adj.文学(上)的,从事写作的,文艺的,精通文学的,书本的" - }, - { - "word": "literature", - "definition": "n.文学(作品),文艺,著作,文献" - }, - { - "word": "litter", - "definition": "n.垃圾,(供动物睡眠或防冻用的)干草,树叶,(一)窝,轿,担架;vt.乱丢,铺草,弄乱;vi.产仔,乱丢垃圾" - }, - { - "word": "locality", - "definition": "n.位置,地点" - }, - { - "word": "locomotive", - "definition": "n.机车,火车头;adj.运动的" - }, - { - "word": "lofty", - "definition": "adj.高高的,崇高的,高傲的,高级的" - }, - { - "word": "logical", - "definition": "adj.合乎逻辑的,合理的" - }, - { - "word": "longevity", - "definition": "n.长命,寿命,供职期限,资历" - }, - { - "word": "loom", - "definition": "n.织布机,织机;v.隐现,迫近" - }, - { - "word": "lounge", - "definition": "n.闲逛,休闲室,长沙发;vi.闲荡,懒洋洋地躺卧;vt.虚度光阴" - }, - { - "word": "loyal", - "definition": "adj.忠诚的,忠心的" - }, - { - "word": "loyalty", - "definition": "n.忠诚,忠心" - }, - { - "word": "lubricate", - "definition": "vt.润滑;v.加润滑油" - }, - { - "word": "luggage", - "definition": "n.行李,皮箱" - }, - { - "word": "luminous", - "definition": "adj.发光的,明亮的" - }, - { - "word": "lunar", - "definition": "adj.月的,月亮的" - }, - { - "word": "lure", - "definition": "v.引诱" - }, - { - "word": "luxury", - "definition": "n.奢侈,华贵" - }, - { - "word": "machinery", - "definition": "n.[总称]机器,机械" - }, - { - "word": "magistrate", - "definition": "n.文职官员,地方官员" - }, - { - "word": "magnet", - "definition": "n.磁体,磁铁" - }, - { - "word": "magnetic", - "definition": "adj.磁的,有磁性的,有吸引力的" - }, - { - "word": "magnificent", - "definition": "adj.华丽的,高尚的,宏伟的" - }, - { - "word": "magnify", - "definition": "vt.放大,扩大,赞美,夸大,夸张;vi.有放大能力" - }, - { - "word": "magnitude", - "definition": "n.大小,数量,巨大,广大,量级" - }, - { - "word": "maintain", - "definition": "vt.维持,维修,继续,供养,主张" - }, - { - "word": "majesty", - "definition": "n.最高权威,王权,雄伟" - }, - { - "word": "majority", - "definition": "n.多数,大半;n.[律]成年" - }, - { - "word": "mall", - "definition": "n.购物商场,商业街,林荫路" - }, - { - "word": "management", - "definition": "n.经营,管理,处理,操纵,驾驶,手段" - }, - { - "word": "maneuver", - "definition": "v.机动;n.机动" - }, - { - "word": "manifest", - "definition": "n.载货单,旅客名单;adj.显然的,明白的;vi.出现;vt.表明,证明" - }, - { - "word": "manipulate", - "definition": "vt.(熟练地)操作,使用(机器等),操纵(人或市价,市场),利用,应付,假造;vt.(熟练地)操作,巧妙地处理" - }, - { - "word": "mansion", - "definition": "n.大厦,官邸,公寓(用复数,用于专有名词中)" - }, - { - "word": "manual", - "definition": "n.手册,指南;adj.手的,手动的,手工的,体力的,手册(性质)的,[律]实际占有的" - }, - { - "word": "manufacture", - "definition": "vt.制造,加工;n.制造,制造业,产品" - }, - { - "word": "manufacturer", - "definition": "n.制造业者,厂商" - }, - { - "word": "manuscript", - "definition": "n.手稿,原稿" - }, - { - "word": "marble", - "definition": "n.大理石,(玩具)弹球.石弹子,雕刻品;adj.大理石的,冷酷无情的,坚硬的" - }, - { - "word": "margin", - "definition": "n.页边的空白,(湖、池等的)边缘,极限,利润,差数,(时间、金额等的)富余;vt.加边于,加旁注于" - }, - { - "word": "marginal", - "definition": "adj.记在页边的,边缘的,边际的" - }, - { - "word": "marsh", - "definition": "n.湿地,沼泽,沼泽地" - }, - { - "word": "marshal", - "definition": "n.元帅,典礼官,执行官,司仪官;vt.整顿,配置,汇集;vi.排列,集合" - }, - { - "word": "masculine", - "definition": "adj.男性的,男子气概的,[语法]阳性的;n.男子,男孩" - }, - { - "word": "mask", - "definition": "n.面具,掩饰,石膏面像;vt.戴面具,掩饰,使模糊;vi.化装,戴面具,掩饰,参加化装舞会" - }, - { - "word": "mass", - "definition": "n.块,大多数,质量,群众,大量;adj.群众的,大规模的,集中的;vt.使集合;vi.聚集" - }, - { - "word": "massacre", - "definition": "n.残杀,大屠杀;v.残杀,集体屠杀" - }, - { - "word": "massive", - "definition": "adj.厚重的,大块的,魁伟的,结实的" - }, - { - "word": "masterpiece", - "definition": "n.杰作,名著" - }, - { - "word": "mature", - "definition": "adj.成熟的,到期的,充分考虑的,(票据等)到期的;vt.使成熟;vi.成熟,到期" - }, - { - "word": "maximum", - "definition": "n.最大量,最大限度,极大;adj.最高的,最多的,最大极限的" - }, - { - "word": "meadow", - "definition": "n.草地,牧场" - }, - { - "word": "mechanical", - "definition": "adj.机械的,机械制的,机械似的,呆板的" - }, - { - "word": "mediate", - "definition": "v.仲裁,调停,作为引起...的媒介,居中调停" - }, - { - "word": "medieval", - "definition": "adj.中世纪的,仿中世纪的,老式的,<贬>原始的" - }, - { - "word": "medium", - "definition": "n.媒体,方法,媒介;adj.中间的,中等的,半生熟的" - }, - { - "word": "melody", - "definition": "n.悦耳的音调" - }, - { - "word": "melt", - "definition": "v.(使)融化,(使)熔化,使软化,使感动" - }, - { - "word": "memorize", - "definition": "v.[亦作memorise]记住,记忆" - }, - { - "word": "menace", - "definition": "n.威胁,危险物;v.恐吓,危及,威胁" - }, - { - "word": "mental", - "definition": "adj.精神的,智力的" - }, - { - "word": "mercury", - "definition": "n.水银,汞,[罗神]墨丘利神(众神的信使)" - }, - { - "word": "mere", - "definition": "adj.仅仅的,起码的,纯粹的" - }, - { - "word": "merely", - "definition": "adv.仅仅,只,不过" - }, - { - "word": "merge", - "definition": "v.合并,并入,结合,吞没,融合" - }, - { - "word": "merit", - "definition": "n.优点,价值;v.有益于" - }, - { - "word": "messenger", - "definition": "n.报信者,使者" - }, - { - "word": "metallic", - "definition": "adj.金属(性)的" - }, - { - "word": "metropolitan", - "definition": "adj.首都的,主要都市的,大城市" - }, - { - "word": "midst", - "definition": "n.中间;prep.在...中间" - }, - { - "word": "migrant", - "definition": "n.候鸟,移居者" - }, - { - "word": "migrate", - "definition": "vi.移动,移往,移植,随季节而移居,(鸟类的)迁徙;vt.使移居,使移植" - }, - { - "word": "mild", - "definition": "adj.温和的,温柔的,淡味的,轻微的,适度的,不含有害物质的的" - }, - { - "word": "militant", - "definition": "adj.好战的,积极从事或支持使用武力的" - }, - { - "word": "military", - "definition": "adj.军事的,军用的" - }, - { - "word": "millionaire", - "definition": "n.百万富翁,大富豪" - }, - { - "word": "mingle", - "definition": "v.(使)混合" - }, - { - "word": "miniature", - "definition": "n.缩小的模型,缩图,缩影;adj.微型的,缩小的" - }, - { - "word": "minibus", - "definition": "n.中客车,小型公共汽车(我国俗称面包车,乘员10人左右)" - }, - { - "word": "minimal", - "definition": "adj.最小的,最小限度的" - }, - { - "word": "minimize", - "definition": "vt.将...减到最少;v.最小化" - }, - { - "word": "minimum", - "definition": "adj.最小的,最低的;n.最小值,最小化" - }, - { - "word": "minority", - "definition": "n.少数,少数民族" - }, - { - "word": "misery", - "definition": "n.痛苦,苦恼,悲惨,不幸,穷困" - }, - { - "word": "misfortune", - "definition": "n.不幸,灾祸" - }, - { - "word": "mission", - "definition": "n.使命,任务,使团,代表团" - }, - { - "word": "missionary", - "definition": "adj.传教的,传教士的;n.传教士" - }, - { - "word": "mistress", - "definition": "n.主妇,女主人,女能人,情妇" - }, - { - "word": "moan", - "definition": "n.呻吟,哀悼,呼啸;vi.发出呻吟声,抱怨,哀悼;vt.呻吟" - }, - { - "word": "mob", - "definition": "n.(集合词)暴徒,乌合之众,(盗贼等的)一群;v.成群暴动,聚众滋扰" - }, - { - "word": "mobile", - "definition": "adj.可移动的,易变的,机动的;n.运动物体" - }, - { - "word": "mobilize", - "definition": "v.动员" - }, - { - "word": "mock", - "definition": "v.嘲笑,骗,挫败,嘲弄;adj.假的;n.嘲弄,模仿,仿制品" - }, - { - "word": "modest", - "definition": "adj.谦虚的,谦让的,适度的" - }, - { - "word": "modify", - "definition": "vt.更改,修改;v.修改" - }, - { - "word": "module", - "definition": "n.模数,模块,登月舱,指令舱" - }, - { - "word": "molecule", - "definition": "n.[化]分子,些微" - }, - { - "word": "momentum", - "definition": "n.动力,要素" - }, - { - "word": "monetary", - "definition": "adj.货币的,金钱的" - }, - { - "word": "monitor", - "definition": "n.班长,监听器,监视器,监控器;vt.监控;v.监控" - }, - { - "word": "monopoly", - "definition": "n.垄断,垄断者,专利权,专利事业" - }, - { - "word": "moral", - "definition": "n.怪物,妖怪" - }, - { - "word": "monster", - "definition": "adj.道德(上)的,精神的;n.道德" - }, - { - "word": "morality", - "definition": "adj.道德的;n.道德" - }, - { - "word": "moreover", - "definition": "adv.而且,此外" - }, - { - "word": "mortal", - "definition": "n.凡人,人类;adj.必死的,致命的,人类的,临终的;adj.<口>极端的,非常大(长)的" - }, - { - "word": "mortgage", - "definition": "n.抵押;v.抵押" - }, - { - "word": "motel", - "definition": "n.汽车旅馆" - }, - { - "word": "motivate", - "definition": "v.激发" - }, - { - "word": "motive", - "definition": "n.动机,目的;adj.发动的,运动的" - }, - { - "word": "mourn", - "definition": "v.哀悼,忧伤,服丧" - }, - { - "word": "muddy", - "definition": "adj.多泥的,泥泞的" - }, - { - "word": "multiple", - "definition": "adj.多样的,多重的;n.倍数,若干;v.成倍增加" - }, - { - "word": "multiply", - "definition": "v.繁殖,乘,增加" - }, - { - "word": "multitude", - "definition": "n.多数,群众" - }, - { - "word": "municipal", - "definition": "adj.市政的,市立的,地方性的,地方自治的" - }, - { - "word": "murmur", - "definition": "n.低沉连续的声音,咕哝,怨言,低语;v.发低沉连续的声音,发怨言,低声说,低语" - }, - { - "word": "muscular", - "definition": "adj.肌肉的,强健的" - }, - { - "word": "mute", - "definition": "n.哑巴,哑音字母,[律]拒不答辩的被告,弱音器;adj.哑的,无声的,沉默的;vt.减弱...的声音;vi.排泄" - }, - { - "word": "mutter", - "definition": "n.咕哝,嘀咕;v.咕哝,嘀咕" - }, - { - "word": "mutual", - "definition": "adj.相互的,共有的" - }, - { - "word": "myth", - "definition": "n.神话,神话式的人物(或事物),虚构的故事,荒诞的说法" - }, - { - "word": "naive", - "definition": "adj.天真的" - }, - { - "word": "napkin", - "definition": "n.餐巾,餐巾纸,<英>尿布,<美>月经带" - }, - { - "word": "narrative", - "definition": "adj.叙述性的;n.叙述" - }, - { - "word": "nasty", - "definition": "adj.污秽的,肮脏的,令人厌恶的,淫秽的,下流的,凶相的,威胁的" - }, - { - "word": "navigation", - "definition": "n.航海,航空,导航,领航,航行" - }, - { - "word": "necessitate", - "definition": "v.成为必要" - }, - { - "word": "negative", - "definition": "n.否定,负数,底片;adj.否定的,消极的,负的,阴性的;vt.否定,拒绝(接受)" - }, - { - "word": "neglect", - "definition": "vt.忽视,疏忽,漏做;n.忽视,疏忽,漏做" - }, - { - "word": "negligible", - "definition": "adj.可以忽略的,不予重视的" - }, - { - "word": "negotiate", - "definition": "v.(与某人)商议,谈判,磋商,,买卖,让渡(支票、债券等),通过,越过" - }, - { - "word": "neutral", - "definition": "n.中立者,中立国,非彩色,齿轮的空档;adj.中立的,中立国的,中性的,无确定性质的,(颜色等)不确定的" - }, - { - "word": "nickel", - "definition": "n.[化]镍,镍币,(美国和加拿大的)五分镍币;vt.镀镍于" - }, - { - "word": "nickname", - "definition": "n.诨号,绰号,昵称;vt.给...取绰号,给...起浑名" - }, - { - "word": "nil", - "definition": "n.零" - }, - { - "word": "nominal", - "definition": "adj.名义上的,有名无实的,名字的,[语]名词性的;n.名词性词" - }, - { - "word": "nominate", - "definition": "vt.提名,推荐,任命,命名" - }, - { - "word": "nonetheless", - "definition": "adv.虽然如此,但是" - }, - { - "word": "norm", - "definition": "n.标准,规范" - }, - { - "word": "notable", - "definition": "adj.值得注意的,显著的,著名的" - }, - { - "word": "notation", - "definition": "n.符号" - }, - { - "word": "notify", - "definition": "v.通报" - }, - { - "word": "notion", - "definition": "n.概念,观念,想法,意见,打算,主张,(复数)<美语>小饰物" - }, - { - "word": "notorious", - "definition": "adj.声名狼籍的" - }, - { - "word": "notwithstanding", - "definition": "prep.虽然,尽管;adv.尽管,还是;conj.虽然,尽管" - }, - { - "word": "nourish", - "definition": "vt.滋养,使健壮,怀有(希望,仇恨等)" - }, - { - "word": "novelty", - "definition": "n.新颖,新奇,新鲜,新奇的事物" - }, - { - "word": "numerical", - "definition": "adj.数字的,用数表示的;adj.数字的,用数字表示的" - }, - { - "word": "numerous", - "definition": "adj.众多的,许多的,无数的" - }, - { - "word": "nurture", - "definition": "n.养育,教育,教养,营养品;vt.养育,给与营养物,教养" - }, - { - "word": "nutrition", - "definition": "n.营养,营养学" - }, - { - "word": "oak", - "definition": "n.[植]橡树,橡木;adj.橡木制的" - }, - { - "word": "oath", - "definition": "n.誓言,宣誓,诅咒" - }, - { - "word": "obedient", - "definition": "adj.服从的,孝顺的" - }, - { - "word": "object", - "definition": "n.物体,目标,宾语,对象;vi.反对,拒绝,抗议;vt.提出...来反对" - }, - { - "word": "objection", - "definition": "n.异议,缺陷,妨碍,拒绝之理由" - }, - { - "word": "objective", - "definition": "n.目标,目的,(显微镜的)(接)物镜,[语法]宾格;adj.客观的,[语法]宾格的" - }, - { - "word": "obligation", - "definition": "n.义务,职责,债务" - }, - { - "word": "obscene", - "definition": "adj.淫秽的,猥亵的" - }, - { - "word": "obscure", - "definition": "adj.暗的,朦胧的,模糊的,晦涩的;vt.使暗,使不明显" - }, - { - "word": "obstacle", - "definition": "n.障碍,妨害物" - }, - { - "word": "obtain", - "definition": "vt.获得,得到" - }, - { - "word": "occasional", - "definition": "adj.偶然的,非经常的,特殊场合的,临时的" - }, - { - "word": "occupation", - "definition": "n.职业,占有,占有(房屋等)期间" - }, - { - "word": "occupy", - "definition": "vt.占,占用,占领,占据" - }, - { - "word": "occur", - "definition": "vi.发生,出现" - }, - { - "word": "odor", - "definition": "n.气味,名声" - }, - { - "word": "offense", - "definition": "n.进攻" - }, - { - "word": "offensive", - "definition": "adj.讨厌的,无礼的,攻击性的;n.进攻,攻势" - }, - { - "word": "offset", - "definition": "n.偏移量,抵销,弥补,分支,平版印刷,胶印;vt.弥补,抵销,用平版印刷;vi.偏移,形成分支" - }, - { - "word": "offspring", - "definition": "n.(单复数同形)儿女,子孙,后代,产物" - }, - { - "word": "olive", - "definition": "n.橄榄树,橄榄叶,橄榄枝,橄榄色" - }, - { - "word": "opaque", - "definition": "n.不透明物;adj.不透明的,不传热的,迟钝的" - }, - { - "word": "opponent", - "definition": "adj.对立的,对抗的;n.对手,反对者" - }, - { - "word": "oppose", - "definition": "vt.反对,使对立,使对抗,抗争;vi.反对" - }, - { - "word": "oppress", - "definition": "vt.压迫,压抑" - }, - { - "word": "optical", - "definition": "adj.眼的,视力的,光学的" - }, - { - "word": "optimism", - "definition": "n.乐观,乐观主义" - }, - { - "word": "optimistic", - "definition": "adj.乐观的" - }, - { - "word": "optimum", - "definition": "n.最适宜;adj.最适宜的" - }, - { - "word": "option", - "definition": "n.选项,选择权,[经]买卖的特权" - }, - { - "word": "orbit", - "definition": "n.轨道,势力范围,生活常规,眼眶;vt.绕...轨道而行;vi.进入轨道,沿轨道飞行,盘旋" - }, - { - "word": "orchestra", - "definition": "n.管弦乐队,乐队演奏处" - }, - { - "word": "ore", - "definition": "n.矿石,含有金属的岩石" - }, - { - "word": "orient", - "definition": "n.东方,东方诸国(地中海以东各国);adj.东方的,上升的,灿烂的;vi.适应形势,向东;vt.使朝东,使适应,确定方向" - }, - { - "word": "oriental", - "definition": "n.东方人(尤指中国人和日本人);adj.东方诸国的,亚洲的,东方的,(珍珠等)最优质的" - }, - { - "word": "orientation", - "definition": "n.方向,方位,定位,倾向性,向东方" - }, - { - "word": "origin", - "definition": "n.起源,由来,起因,出身,血统,[数]原点" - }, - { - "word": "original", - "definition": "adj.最初的,原始的,独创的,新颖的;n.原物,原作" - }, - { - "word": "originate", - "definition": "vt.引起,发明,发起,创办;vi.起源,发生" - }, - { - "word": "ornament", - "definition": "n.装饰物,教堂用品;vt.装饰,修饰" - }, - { - "word": "orthodox", - "definition": "adj.正统的,传统的,习惯的,保守的,东正教的" - }, - { - "word": "outbreak", - "definition": "n.(战争的)爆发,(疾病的)发作" - }, - { - "word": "outfit", - "definition": "n.用具,配备,机构,全套装配,;vt.配备,装备;vi.得到装备" - }, - { - "word": "outline", - "definition": "n.大纲,轮廓,略图,外形,要点,概要;vt.描画轮廓,略述" - }, - { - "word": "output", - "definition": "n.产量,输出,输出量" - }, - { - "word": "outrage", - "definition": "n.暴行,侮辱,愤怒;vt.凌辱,引起...义愤,强奸" - }, - { - "word": "outset", - "definition": "n.开端,开始" - }, - { - "word": "outward", - "definition": "adj.外面的,外表的,公开的,向外的,外出的;adv.向外,在外,表面上n.外表,周围世界" - }, - { - "word": "overcome", - "definition": "vt.战胜,克服,胜过,征服;vi.得胜" - }, - { - "word": "overflow", - "definition": "n.溢出,超值,泛滥,充满,洋溢;v.(使)泛滥,(使)溢出,(使)充溢" - }, - { - "word": "overhead", - "definition": "adj.在头上的,高架的;n.企业一般管理费用,天花板adv.在头顶上,在空中,在高处" - }, - { - "word": "overhear", - "definition": "vt.无意中听到,偷听" - }, - { - "word": "overlap", - "definition": "v重叠" - }, - { - "word": "overlook", - "definition": "vt.俯瞰,耸出,远眺,没注意到;n.眺望,俯瞰中的景色" - }, - { - "word": "overpass", - "definition": "n.<美>天桥,陆桥;vt.胜过,通过,忽视" - }, - { - "word": "overt", - "definition": "adj.明显的,公然的" - }, - { - "word": "overthrow", - "definition": "n.推翻,打倒,扔得过远得球;vt.打倒,推翻,颠覆" - }, - { - "word": "overturn", - "definition": "n.倾覆,破灭,革命;vt.推翻,颠倒;vi.翻倒;n.翻转,毁灭" - }, - { - "word": "overwhelm", - "definition": "vt.淹没,覆没,受打击,制服,压倒" - }, - { - "word": "overwhelming", - "definition": "adj.压倒性的,无法抵抗的" - }, - { - "word": "owe", - "definition": "vt.欠(债等),受到...的思想,感激,把...归功于;v.欠,应感激,应该把…归功于(to);vi.欠钱" - }, - { - "word": "owl", - "definition": "n.[动]猫头鹰,枭,惯于晚上活动的人;ObjectWindowLibrary,definitionorlandC++的类库" - }, - { - "word": "oxide", - "definition": "n.[化]氧化物" - }, - { - "word": "oxygen", - "definition": "n.[化]氧" - }, - { - "word": "ozone", - "definition": "n.新鲜的空气,[化]臭氧" - }, - { - "word": "package", - "definition": "n.包裹,包" - }, - { - "word": "pact", - "definition": "n.合同,公约,协定" - }, - { - "word": "pamphlet", - "definition": "n.小册子" - }, - { - "word": "panic", - "definition": "n.惊慌,恐慌,没有理由的" - }, - { - "word": "paperback", - "definition": "n.平装本,纸面本" - }, - { - "word": "paradise", - "definition": "n.天堂" - }, - { - "word": "paradox", - "definition": "n.似非而是的论点,自相矛盾的话" - }, - { - "word": "paragraph", - "definition": "n.(文章)段,节,段落" - }, - { - "word": "parallel", - "definition": "adj.平行的,相同的,类似的,并联的;n.平行线,平行面,类似,相似物;v.相应,平行" - }, - { - "word": "paralyze", - "definition": "vt.使瘫痪,使麻痹" - }, - { - "word": "parameter", - "definition": "n.参数,参量,<口>起限定作用的因素" - }, - { - "word": "parasite", - "definition": "n.寄生虫,食客" - }, - { - "word": "partial", - "definition": "adj.部分的,局部的,偏袒的,偏爱的;n.泛音" - }, - { - "word": "participant", - "definition": "n.参与者,共享者;adj.参与的" - }, - { - "word": "partition", - "definition": "n.分割,划分,瓜分,分开,隔离物;vt.区分,隔开,分割" - }, - { - "word": "passion", - "definition": "n.激情,热情" - }, - { - "word": "passive", - "definition": "adj.被动的" - }, - { - "word": "pastime", - "definition": "n.消遣,娱乐" - }, - { - "word": "pastry", - "definition": "n.面粉糕饼,馅饼皮" - }, - { - "word": "pasture", - "definition": "n.牧地,草原,牧场;v.放牧,牧(牛、羊)等,吃草" - }, - { - "word": "patent", - "definition": "n.专利权,执照,专利品;adj.特许的,专利的,显著的,明白的,新奇的;vt.取得...的专利权,请准专利" - }, - { - "word": "pathetic", - "definition": "adj.可怜的,悲惨的" - }, - { - "word": "patriot", - "definition": "n.爱国者" - }, - { - "word": "patriotic", - "definition": "adj.爱国的,有爱国心的" - }, - { - "word": "patrol", - "definition": "v.出巡,巡逻;n.巡逻" - }, - { - "word": "patron", - "definition": "n.(对某人,某种目标,艺术等)赞助人,资助人" - }, - { - "word": "pattern", - "definition": "n.模范,式样,模式,样品,格调,图案;vt.模仿,仿造,以图案装饰;vi.形成图案" - }, - { - "word": "pave", - "definition": "v.铺" - }, - { - "word": "peak", - "definition": "n.山顶,顶点,帽舌,(记录的)最高峰;adj.最高的;vi.到达最高点,消瘦,缩小;vt.使竖起,使达到最高点" - }, - { - "word": "pearl", - "definition": "n.珍珠" - }, - { - "word": "peculiar", - "definition": "adj.奇特的,罕见的,特殊的;n.特有财产,特权" - }, - { - "word": "pedal", - "definition": "n.踏板;v.踩...的踏板" - }, - { - "word": "pedestrian", - "definition": "n.步行者;adj.徒步的,呆板的,通俗的" - }, - { - "word": "peel", - "definition": "v.剥,削,剥落" - }, - { - "word": "peg", - "definition": "n.钉,栓,桩,销子,借口;vt.钉木钉,固定,限制;vi.坚持不懈地工作" - }, - { - "word": "penalty", - "definition": "n.处罚,罚款" - }, - { - "word": "pendulum", - "definition": "n.钟摆,摇锤" - }, - { - "word": "penguin", - "definition": "n.企鹅" - }, - { - "word": "peninsula", - "definition": "n.半岛" - }, - { - "word": "perception", - "definition": "n.理解,感知,感觉,DPS公司出的数字影像压缩卡" - }, - { - "word": "perfection", - "definition": "n.尽善尽美,完美,完成" - }, - { - "word": "performance", - "definition": "n.履行,执行,成绩,性能,表演,演奏" - }, - { - "word": "perfume", - "definition": "n.香味,芳香,香水;vt.使发香,洒香水于,发香味" - }, - { - "word": "periodic", - "definition": "adj.周期的,定期的" - }, - { - "word": "periodical", - "definition": "adj.周期的,定期的;n.期刊,杂志" - }, - { - "word": "perish", - "definition": "vi.毁灭,死亡,腐烂,枯萎;vt.毁坏,使麻木" - }, - { - "word": "permanent", - "definition": "adj.永久的,持久的" - }, - { - "word": "permeate", - "definition": "vt.弥漫,渗透,透过,充满;vi.透入" - }, - { - "word": "permissible", - "definition": "adj.可允许的" - }, - { - "word": "perpetual", - "definition": "adj.永久的" - }, - { - "word": "perplex", - "definition": "v.困惑" - }, - { - "word": "persist", - "definition": "vi.坚持,持续" - }, - { - "word": "persistent", - "definition": "adj.持久稳固的" - }, - { - "word": "perspective", - "definition": "n.透视画法,透视图,远景,前途,观点,看法,观点,观察" - }, - { - "word": "persuasion", - "definition": "n.说服,说服力" - }, - { - "word": "pessimistic", - "definition": "悲观的" - }, - { - "word": "pest", - "definition": "n.有害物" - }, - { - "word": "petition", - "definition": "n.请愿,情愿书,诉状,陈情书;v.请求,恳求,请愿" - }, - { - "word": "petty", - "definition": "adj.小的,不重要的,小规模的,小型的,细微的,小器的,卑鄙的" - }, - { - "word": "phase", - "definition": "n.阶段,状态,相,相位;v.定相" - }, - { - "word": "phenomenon", - "definition": "n.现象" - }, - { - "word": "physiological", - "definition": "adj.生理学的,生理学上的" - }, - { - "word": "pilgrim", - "definition": "n.圣地朝拜者,朝圣" - }, - { - "word": "pirate", - "definition": "n.海盗,盗印者,盗版者,侵犯专利权者;vt.盗印,盗版,掠夺,翻印;vi.做海盗" - }, - { - "word": "pistol", - "definition": "n.手枪" - }, - { - "word": "pitch", - "definition": "n.程度,斜度,树脂,投掷,定调,船前后颠簸,沥青;vt.投,掷,向前倾,定位于,用沥青涂,扎营;vi.搭篷,投掷,坠落,倾斜" - }, - { - "word": "plague", - "definition": "n.瘟疫,麻烦,苦恼,灾祸;vt.折磨,使苦恼,使得灾祸" - }, - { - "word": "planet", - "definition": "n.[天]行星" - }, - { - "word": "plaster", - "definition": "n.石膏,灰泥,膏药,橡皮膏;vt.涂以灰泥,敷以膏药,减轻,粘贴,重创" - }, - { - "word": "plateau", - "definition": "n.高地,高原(上升后的)稳定水平(或时期、状态)" - }, - { - "word": "plausible", - "definition": "adj.似是而非的" - }, - { - "word": "plea", - "definition": "n.恳求,请求,辩解,藉口" - }, - { - "word": "plead", - "definition": "vbl.plead的过去式及过去分词" - }, - { - "word": "pledge", - "definition": "n.保证,誓言,抵押,抵押品;vt.保证,使发誓,抵押,典当,举杯祝...健康" - }, - { - "word": "plunge", - "definition": "n.跳进,投入;vi.投入,跳进,陷入;vt.使投入,使插入,使陷入" - }, - { - "word": "poetry", - "definition": "n.诗,作诗法,诗意,诗情" - }, - { - "word": "poisonous", - "definition": "adj.有毒的" - }, - { - "word": "poke", - "definition": "n.刺,戳,懒汉,袋子;vt.戳,捅,拨开,刺;vi.戳,刺,捅,伸出,刺探,闲荡" - }, - { - "word": "polar", - "definition": "adj.[天]两极的,极地的,南辕北辙的,南极的,(北极星似的)指引的,极性的,北极的;n.极线,极面" - }, - { - "word": "pole", - "definition": "n.棒,柱,杆,竿,极,磁极,电极;vt.用竿支撑,用棒推;vi.撑篙" - }, - { - "word": "polish", - "definition": "n.磨光,光泽,上光剂,优雅,精良;vt.擦亮,发亮,磨光,推敲;vi.发亮,变光滑;adj.波兰的;n.波兰人" - }, - { - "word": "ponder", - "definition": "v.沉思,考虑" - }, - { - "word": "pope", - "definition": "n.罗马教皇,主教,蒲柏(1688-1744,英国诗人),大腿上要害部位;vt.打大腿上要害部位" - }, - { - "word": "porch", - "definition": "n.门廊,走廊" - }, - { - "word": "pore", - "definition": "n.毛孔,小孔,气孔;vi.熟读,凝视,细想,沉思;vt.因凝视过度使...疲劳" - }, - { - "word": "portray", - "definition": "v.描绘" - }, - { - "word": "pose", - "definition": "n.姿势,姿态;v.(使...)摆好姿势,形成,引起,造成;vi.摆姿势,佯装,矫揉造作" - }, - { - "word": "positive", - "definition": "adj.肯定的,实际的,积极的,绝对的,确实的;adj.[数]正的;adj.[电]阳的;adj.[语法]原级的" - }, - { - "word": "possess", - "definition": "vt.占有,拥有,持有,摆布,支配" - }, - { - "word": "posture", - "definition": "n.(身体的)姿势,体态,状态,情况,心境,态度;v.令取某种姿势,摆姿势,作出姿态" - }, - { - "word": "potential", - "definition": "adj.潜在的,可能的,势的,位的;n.潜能,潜力,电压" - }, - { - "word": "poverty", - "definition": "n.贫穷,贫困,贫乏,缺少" - }, - { - "word": "practicable", - "definition": "adj.能实行的,行得通的,可以实行的" - }, - { - "word": "preach", - "definition": "v.鼓吹" - }, - { - "word": "precede", - "definition": "v.领先(于),在...之前,先于" - }, - { - "word": "precedent", - "definition": "n.先例" - }, - { - "word": "precious", - "definition": "adj.宝贵的,贵重的,珍爱的,过于精致的,珍爱的" - }, - { - "word": "precise", - "definition": "adj.精确的,准确的;n.精确" - }, - { - "word": "preclude", - "definition": "n.排除" - }, - { - "word": "predecessor", - "definition": "n.前辈,前任,(被取代的)原有事物" - }, - { - "word": "predict", - "definition": "v.预知,预言,预报" - }, - { - "word": "predominant", - "definition": "adj.卓越的,支配的,主要的,突出的,有影响的" - }, - { - "word": "preferable", - "definition": "adj.更可取的,更好的,更优越的" - }, - { - "word": "preference", - "definition": "n.偏爱,优先选择" - }, - { - "word": "prejudice", - "definition": "n.偏见,成见,损害,侵害;v.损害" - }, - { - "word": "preliminary", - "definition": "adj.预备的,初步的" - }, - { - "word": "premature", - "definition": "adj.未成熟的,太早的,早熟的" - }, - { - "word": "premier", - "definition": "adj.第一的,首要的;n.总理" - }, - { - "word": "premise", - "definition": "n.[逻][法]前提,(企业,机构等使用的)房屋连地基;vt.提论,预述,假定;vi.作出前提" - }, - { - "word": "premium", - "definition": "n.额外费用,奖金,奖赏,保险费,(货币兑现的)贴水" - }, - { - "word": "prescription", - "definition": "n.指示,规定,命令,处方,药方" - }, - { - "word": "presentation", - "definition": "n.提供显示外观" - }, - { - "word": "preserve", - "definition": "vt.保护,保持,保存,保藏;vi.做蜜饯,禁猎;n.蜜饯,果酱,禁猎地,禁区,防护物" - }, - { - "word": "preside", - "definition": "v.主持" - }, - { - "word": "pressure", - "definition": "n.压,压力,电压,压迫,强制,紧迫" - }, - { - "word": "prestige", - "definition": "n.声望,威望,威信" - }, - { - "word": "presumably", - "definition": "adv.推测起来,大概" - }, - { - "word": "presume", - "definition": "vt.假定,假设,认为" - }, - { - "word": "pretext", - "definition": "n.借口,托辞;v.借口" - }, - { - "word": "prevail", - "definition": "vi.流行,盛行,获胜,成功" - }, - { - "word": "prevalent", - "definition": "adj.普遍的,流行的" - }, - { - "word": "previous", - "definition": "n.事先查看,[计]预览;vt.事先查看,预展,预演" - }, - { - "word": "preview", - "definition": "adj.在前的,早先的;adv.在...以前;返回上一级菜单" - }, - { - "word": "prey", - "definition": "n.被掠食者,牺牲者,掠食;vi.捕食,掠夺,折磨" - }, - { - "word": "priest", - "definition": "n.牧师" - }, - { - "word": "primarily", - "definition": "adv.首先,起初,主要地,根本上" - }, - { - "word": "primary", - "definition": "adj.第一位的,主要的,初步的,初级的,原来的,根源的" - }, - { - "word": "prime", - "definition": "n.最初,青春,精华;adj.主要的,最初的,有青春活力的,最好的,第一流的,根本的,[数]素数的;v.预先准备好,<口>让人吃(喝)足,灌注,填装" - }, - { - "word": "primitive", - "definition": "adj.原始的,远古的,粗糙的,简单的" - }, - { - "word": "principal", - "definition": "n.负责人,首长,校长,主犯,本金;adj.主要的,首要的" - }, - { - "word": "principle", - "definition": "n.法则,原则,原理" - }, - { - "word": "priority", - "definition": "n.先,前,优先,优先权" - }, - { - "word": "privacy", - "definition": "n.独处而不受干扰,秘密" - }, - { - "word": "privilege", - "definition": "n.特权,特别待遇,基本公民权力,特免;vt.给与...特权,特免" - }, - { - "word": "probability", - "definition": "n.可能性,或然性,概率" - }, - { - "word": "probe", - "definition": "n.探针,探测器;vt.(以探针等)探查,查明" - }, - { - "word": "procedure", - "definition": "n.程序,手续" - }, - { - "word": "proceedings", - "definition": "n.行动,进行,会议录,学报" - }, - { - "word": "process", - "definition": "n.过程,作用,方法,程序,步骤,进行,推移;vt.加工,处理" - }, - { - "word": "proclaim", - "definition": "vt.宣布,声明,显示,显露" - }, - { - "word": "productive", - "definition": "adj.生产性的,生产的,能产的,多产的" - }, - { - "word": "productivity", - "definition": "n.生产力" - }, - { - "word": "profess", - "definition": "v.表示" - }, - { - "word": "profession", - "definition": "n.职业,专业,表白,宣布" - }, - { - "word": "professional", - "definition": "n.自由职业者,专业人员,职业运动员,职业艺人;adj.专业的,职业的" - }, - { - "word": "proficiency", - "definition": "n.熟练,精通,熟练程度" - }, - { - "word": "profitable", - "definition": "adj.有利可图的" - }, - { - "word": "profound", - "definition": "adj.深刻的,意义深远的,渊博的,造诣深的" - }, - { - "word": "progressive", - "definition": "n.改革论者,进步论者;adj.前进的,(税收)累进的,进步的" - }, - { - "word": "prohibit", - "definition": "vt.禁止,阻止" - }, - { - "word": "project", - "definition": "n.计划,方案,事业,企业,工程;v.设计,计划,投射,放映,射出,发射(导弹等),凸出" - }, - { - "word": "prolong", - "definition": "vt.延长,拖延" - }, - { - "word": "prominent", - "definition": "adj.卓越的,显著的,突出的" - }, - { - "word": "promising", - "definition": "adj.有希望的,有前途的" - }, - { - "word": "promote", - "definition": "vt.促进,发扬,提升,提拔,晋升为" - }, - { - "word": "prone", - "definition": "adj.倾向于" - }, - { - "word": "proof", - "definition": "n.证据,试验,考验,[印刷]校样;adj.不能透入的,证明用的,防...的,有耐力的;vt.检验,校对,使不被穿透" - }, - { - "word": "propaganda", - "definition": "n.宣传,[天主教]传道总会" - }, - { - "word": "propagate", - "definition": "v.繁殖,传播,宣传" - }, - { - "word": "propel", - "definition": "vt.推进,驱使" - }, - { - "word": "property", - "definition": "n.财产,所有物,所有权,性质,特性,(小)道具" - }, - { - "word": "prophet", - "definition": "n.先知,预言者,提倡者" - }, - { - "word": "proposition", - "definition": "n.主张,建议,陈述,命题" - }, - { - "word": "prose", - "definition": "n.散文" - }, - { - "word": "prosecute", - "definition": "vt.实行,从事,告发,起诉;vi.告发,起诉,作检察官" - }, - { - "word": "prospect", - "definition": "n.景色,前景,前途,期望;vi.寻找,勘探" - }, - { - "word": "prospective", - "definition": "adj.预期的" - }, - { - "word": "prosperous", - "definition": "adj.繁荣的" - }, - { - "word": "protein", - "definition": "n.[生化]蛋白质;adj.蛋白质的" - }, - { - "word": "protest", - "definition": "n.主张,断言,抗议;v.主张,断言抗议,拒付" - }, - { - "word": "prototype", - "definition": "n.原型" - }, - { - "word": "provided", - "definition": "conj.倘若" - }, - { - "word": "provision", - "definition": "n.供应,(一批)供应品,预备,防备,规定" - }, - { - "word": "provocative", - "definition": "adj.煽动的;n.刺激物" - }, - { - "word": "provoke", - "definition": "vt.激怒,挑拨,煽动,惹起,驱使" - }, - { - "word": "proximity", - "definition": "n.接近,亲近" - }, - { - "word": "prune", - "definition": "v.剪除" - }, - { - "word": "psychiatrist", - "definition": "n.精神病医师,精神病学家" - }, - { - "word": "psychological", - "definition": "adj.心理(上)的" - }, - { - "word": "pudding", - "definition": "n.布丁(一种以面粉,牛奶,鸡蛋等为基料的糊壮甜食)" - }, - { - "word": "pumpkin", - "definition": "n.南瓜" - }, - { - "word": "purchase", - "definition": "vt.买,购买;n.买,购买" - }, - { - "word": "purify", - "definition": "vt.使纯净;v.净化" - }, - { - "word": "purity", - "definition": "n.纯净,纯洁,纯度" - }, - { - "word": "pursue", - "definition": "vt.追赶,追踪,追击,继续,从事" - }, - { - "word": "pursuit", - "definition": "n.追击" - }, - { - "word": "qualitative", - "definition": "adj.性质上的,定性的" - }, - { - "word": "quantify", - "definition": "vt.确定数量;v.量化" - }, - { - "word": "quantitative", - "definition": "adj.数量的,定量的" - }, - { - "word": "quart", - "definition": "n.夸脱(容量单位)" - }, - { - "word": "quarterly", - "definition": "n.季刊;adj.一年四次的,每季的;adv.每季地" - }, - { - "word": "quartz", - "definition": "n.石英" - }, - { - "word": "queer", - "definition": "n.同性恋者;adj.奇怪的,可疑的,不舒服的;vt.搞糟;" - }, - { - "word": "quench", - "definition": "vt.结束,熄灭,淬火;vi.熄灭,平息" - }, - { - "word": "quest", - "definition": "n.寻求" - }, - { - "word": "questionnaire", - "definition": "n.调查表,问卷" - }, - { - "word": "quiver", - "definition": "n.震动,颤抖,箭袋,箭袋中的箭;vi.颤抖,振动,射中;vt.使颤动;adj.敏捷的" - }, - { - "word": "quota", - "definition": "n.配额,限额" - }, - { - "word": "racial", - "definition": "adj.人种的,种族的,种族间的" - }, - { - "word": "racket", - "definition": "n.球拍,喧闹纷乱;v.过着花天酒地的生活" - }, - { - "word": "radiant", - "definition": "adj.发光的,辐射的,容光焕发的" - }, - { - "word": "radiate", - "definition": "vt.放射,辐射,传播,广播;vi.发光,辐射,流露;adj.有射线的,辐射状的" - }, - { - "word": "radical", - "definition": "adj.根本的,基本的,激进的;n.激进分子" - }, - { - "word": "radioactive", - "definition": "adj.放射性的,有辐射能的" - }, - { - "word": "radius", - "definition": "n.半径,范围,辐射光线,有效航程,范围,界限" - }, - { - "word": "random", - "definition": "n.随意,任意;adj.任意的,随便的,胡乱的;adv.胡乱地" - }, - { - "word": "rank", - "definition": "n.等级,横列,阶级;adj.繁茂的,恶臭的,讨厌的,下流的;vt.排列,归类于,把...分等;vi.列为,列队;n.[数]秩" - }, - { - "word": "rap", - "definition": "n.叩击,轻拍,轻敲,斥责;vt.敲,拍,厉声说出,斥责,使着迷;vi.敲击,交谈;abbr.[军]RocketwordssistedProjectile,火箭助推炮弹" - }, - { - "word": "rape", - "definition": "n.掠夺,强奸,葡萄渣,油菜;vt.掠夺,强奸" - }, - { - "word": "rarely", - "definition": "adv.很少地,罕有地" - }, - { - "word": "rash", - "definition": "adj.轻率的,匆忙的,卤莽的;n.[医]皮疹" - }, - { - "word": "rating", - "definition": "n.等级级别(尤指军阶),额定,责骂,申斥" - }, - { - "word": "rational", - "definition": "adj.理性的,合理的,推理的;n.[数]有理数" - }, - { - "word": "reaction", - "definition": "n.反应,反作用,反动(力)" - }, - { - "word": "readily", - "definition": "adv.乐意地,欣然,容易地" - }, - { - "word": "realistic", - "definition": "adj.现实(主义)的" - }, - { - "word": "reap", - "definition": "v.收割,收获" - }, - { - "word": "reassure", - "definition": "vt.使...安心,再保证,使...恢复信心,打消...的疑虑" - }, - { - "word": "rebel", - "definition": "n.造反者,叛逆者,反抗者,叛乱者;adj.造反的,叛逆的,反抗的;v.造反,反叛,反抗,叛乱" - }, - { - "word": "rebellion", - "definition": "n.谋反,叛乱,反抗,不服从" - }, - { - "word": "recall", - "definition": "vt.回忆,回想,记起,取消;n.召回" - }, - { - "word": "recede", - "definition": "v.后退" - }, - { - "word": "receipt", - "definition": "n.收条,收据,收到;v.收到" - }, - { - "word": "reception", - "definition": "n.接待,招待会,接收" - }, - { - "word": "recession", - "definition": "n.撤回,退回,退后,工商业之衰退,不景气" - }, - { - "word": "recipe", - "definition": "n.处方" - }, - { - "word": "recipient", - "definition": "adj.容易接受的,感受性强的;n.容纳者,容器" - }, - { - "word": "reciprocal", - "definition": "adj.互惠的,相应的,倒数的,彼此相反的;n.倒数,互相起作用的事物" - }, - { - "word": "recite", - "definition": "v.背诵,朗读,叙述,[律]书面陈述(事实)" - }, - { - "word": "reckless", - "definition": "adj.不计后果的" - }, - { - "word": "reckon", - "definition": "vt.计算,总计,估计,猜想;vi.数,计算,估计,依赖,料想" - }, - { - "word": "reclaim", - "definition": "vt.要求归还,收回,开垦" - }, - { - "word": "recognition", - "definition": "n.赞誉,承认,重视,公认,赏识,识别" - }, - { - "word": "recognize", - "definition": "vt.认可,承认,公认,赏识;vi.具结" - }, - { - "word": "reconcile", - "definition": "vt.使和解,使和谐,使顺从" - }, - { - "word": "reconciliation", - "definition": "n.和解,调和,顺从" - }, - { - "word": "recover", - "definition": "vt.重新获得,恢复,使改过;vi.痊愈,复原,胜诉;n.DOS命令:从含有损坏磁盘扇区的磁盘上恢复文件" - }, - { - "word": "recovery", - "definition": "n.恢复,痊愈,防御" - }, - { - "word": "recreation", - "definition": "n.消遣,娱乐" - }, - { - "word": "recruit", - "definition": "n.新兵,新分子,新会员;vt.使恢复,补充,征募;vi.征募新兵,复原" - }, - { - "word": "rectangular", - "definition": "adj.矩形的,成直角的" - }, - { - "word": "rectify", - "definition": "vt.矫正,调整,[化]精馏" - }, - { - "word": "recur", - "definition": "vi.复发,重现,再来" - }, - { - "word": "recycle", - "definition": "v.使再循环,反复应用;n.再循环,再生,重复利用" - }, - { - "word": "redundant", - "definition": "adj.多余的" - }, - { - "word": "reel", - "definition": "n.(棉纱,电线的)卷轴,(磁带等的)一盘,旋转,蹒跚;vt.卷...于轴上,使旋转;vi.蹒跚地走,旋转,眩晕,骚乱,退缩,摇晃" - }, - { - "word": "referee", - "definition": "n.仲裁人,调解人,[体]裁判员;v.仲裁,裁判" - }, - { - "word": "reference", - "definition": "n.提及,涉及,参考,参考书目,证明书(人),介绍信(人)" - }, - { - "word": "reflect", - "definition": "v.反射,反映,表现,反省,细想" - }, - { - "word": "reform", - "definition": "n.改革,改善,改良运动,感化;vt.改革,革新,重新组成;vi.革新,改过,重组" - }, - { - "word": "refrain", - "definition": "n.重复,叠句,[乐]副歌;vi.节制,避免,制止" - }, - { - "word": "refresh", - "definition": "v.(使)精神振作,(使)精力恢复,更新" - }, - { - "word": "refreshment", - "definition": "n.点心,饮料,精力恢复,爽快" - }, - { - "word": "refuge", - "definition": "n.庇护,避难,避难所" - }, - { - "word": "refund", - "definition": "v.退还,偿还;n.归还,偿还额,退款" - }, - { - "word": "refusal", - "definition": "n.拒绝,推却,优先取舍权,优先取舍的机会" - }, - { - "word": "refute", - "definition": "vt.驳倒,反驳" - }, - { - "word": "regime", - "definition": "n.政体,政权,政权制度" - }, - { - "word": "regiment", - "definition": "n大量,v严格的管" - }, - { - "word": "region", - "definition": "n.区域,地方,(世界上某个特定的)地区,(艺术,科学等的)领域,(大气,海水等的)层" - }, - { - "word": "register", - "definition": "n.记录,登记簿,登记,注册,寄存器;vt.记录,登记,注册,提示,把...挂号;vi.登记,注册,挂号" - }, - { - "word": "regulation", - "definition": "n.规则,规章,调节,校准" - }, - { - "word": "rehearsal", - "definition": "n.排演,演习,预演,试演" - }, - { - "word": "reign", - "definition": "vi.统治,支配,盛行,占优势;n.统治,统治时期,支配" - }, - { - "word": "rein", - "definition": "n.缰绳,统治,支配;vt.以缰绳控制,统治,驾驭;vi.勒住马,止住" - }, - { - "word": "reinforce", - "definition": "vt.加强,增援,补充,增加...的数量,修补,加固;vi.求援,得到增援;n.加固物" - }, - { - "word": "reject", - "definition": "n.被拒之人,被弃之物,不合格品,落选者,不及格者;vt.拒绝,抵制,否决,呕出,驳回,丢弃" - }, - { - "word": "rejoice", - "definition": "v.(使)欣喜,(使)高兴,喜悦" - }, - { - "word": "relative", - "definition": "n.亲戚,关系词,相关物,亲缘植物;adj.有关系的,相对的,比较而言的" - }, - { - "word": "relay", - "definition": "n.驿马,接替,[电工]继电器;vt.(消息,货物等)分程传递,使接替,转播;vi.得到接替,转播" - }, - { - "word": "release", - "definition": "n.释放,让渡,豁免,发行的书,释放证书;vt.释放,解放,放弃,让与,免除,发表;n.版本,发布" - }, - { - "word": "relevant", - "definition": "adj.有关的,相应的" - }, - { - "word": "reliable", - "definition": "adj.可靠的,可信赖的" - }, - { - "word": "reliance", - "definition": "n.信任,信心,依靠,依靠的人或物" - }, - { - "word": "relief", - "definition": "n.(痛苦等的)减轻,(债务等的)免除,救济,调剂,安慰,浮雕,地貌" - }, - { - "word": "relieve", - "definition": "vt.减轻,解除,援救,救济,换班" - }, - { - "word": "religion", - "definition": "n.宗教,信仰" - }, - { - "word": "religious", - "definition": "adj.信奉宗教的,虔诚的,宗教上的,修道的,严谨的;n.僧侣,尼姑,修道士" - }, - { - "word": "relish", - "definition": "n.意味" - }, - { - "word": "reluctant", - "definition": "adj.不顾的,勉强的,难得到的,难处理的" - }, - { - "word": "rely", - "definition": "v.依赖,依靠,信赖,信任,依赖于" - }, - { - "word": "remain", - "definition": "vi.保持,逗留,剩余,残存" - }, - { - "word": "remainder", - "definition": "n.残余,剩余物,其他的人,[数]余数;v.廉价出售;adj.剩余的,出售剩书的" - }, - { - "word": "remedy", - "definition": "n.药物,治疗法,补救,赔偿;vt.治疗,补救,矫正,修缮,修补" - }, - { - "word": "remnant", - "definition": "n.残余,剩余,零料,残迹;adj.剩余的,残留的" - }, - { - "word": "remote", - "definition": "adj.遥远的,偏僻的,细微的" - }, - { - "word": "renaissance", - "definition": "n.复兴,复活,新生,文艺复兴,文艺复兴时期" - }, - { - "word": "render", - "definition": "vt.呈递,归还,着色,汇报,致使,放弃,表演,实施;vi.给予补偿;n.交纳,粉刷,打底" - }, - { - "word": "repay", - "definition": "v.偿还,报答,报复" - }, - { - "word": "repel", - "definition": "vt.击退,抵制,使厌恶,使不愉快" - }, - { - "word": "repertoire", - "definition": "n.(准备好演出的)节目,保留剧目,(计算机的)指令表,指令系统,<美>(某个人的)全部技能" - }, - { - "word": "represent", - "definition": "vt.表现,描绘,声称,象征,扮演,回忆,再赠送,再上演;vi.提出异议" - }, - { - "word": "repression", - "definition": "n.镇压,抑制,抑压" - }, - { - "word": "reproach", - "definition": "v.责备" - }, - { - "word": "reputation", - "definition": "n.名誉,名声" - }, - { - "word": "resemblance", - "definition": "n.类同之处" - }, - { - "word": "resent", - "definition": "v.愤恨,怨恨" - }, - { - "word": "reservation", - "definition": "n.保留,(旅馆房间等)预定,预约" - }, - { - "word": "reserve", - "definition": "n.储备(物),储藏量,预备队;vt.储备,保存,保留,预定,预约" - }, - { - "word": "reside", - "definition": "vi.居住" - }, - { - "word": "resident", - "definition": "n.居民;adj.居住的,常驻的" - }, - { - "word": "residential", - "definition": "adj.住宅的,与居住有关的" - }, - { - "word": "resign", - "definition": "n.辞去(职务);v.辞去,辞职" - }, - { - "word": "resistant", - "definition": "adj.抵抗的,有抵抗力的" - }, - { - "word": "resolve", - "definition": "n.决心;v.决心,决定,决心要,(使)分解,溶解,解决;vt.解决" - }, - { - "word": "resort", - "definition": "vi.求助,诉诸,采取(某种手段等),常去;n.凭借,手段,常去之地,胜地" - }, - { - "word": "respective", - "definition": "adj.分别的,各自的" - }, - { - "word": "respond", - "definition": "v.回答,响应,作出反应;vi.有反应" - }, - { - "word": "response", - "definition": "n.回答,响应,反应" - }, - { - "word": "responsible", - "definition": "adj.有责任的,可靠的,可依赖的,负责的" - }, - { - "word": "restore", - "definition": "vt.恢复,使回复,归还,交还,修复,重建" - }, - { - "word": "restrain", - "definition": "vt.抑制,制止" - }, - { - "word": "restraint", - "definition": "n.抑制,制止,克制" - }, - { - "word": "restrict", - "definition": "vt.限制,约束,限定" - }, - { - "word": "resultant", - "definition": "adj.作为结果而发生的,合成的" - }, - { - "word": "resume", - "definition": "n.摘要,概略,<美>履历;vt.再继续,重新开始,重新占用,再用,恢复" - }, - { - "word": "retain", - "definition": "vt.保持,保留" - }, - { - "word": "retention", - "definition": "保持力" - }, - { - "word": "retort", - "definition": "v.反驳,反击,回报;n.曲颈甑,曲颈瓶,蒸器" - }, - { - "word": "retrieve", - "definition": "v.重新得到;n.找回" - }, - { - "word": "retrospect", - "definition": "n.回顾" - }, - { - "word": "reunion", - "definition": "n.团圆,重聚" - }, - { - "word": "reveal", - "definition": "vt.展现,显示,揭示,暴露" - }, - { - "word": "revelation", - "definition": "n.显示,揭露,被揭露的事,新发现,启示,揭示" - }, - { - "word": "revenge", - "definition": "n.报仇,复仇;vt.替...报仇,复仇" - }, - { - "word": "revenue", - "definition": "n.收入,国家的收入,税收" - }, - { - "word": "reverse", - "definition": "n.相反,背面,反面,倒退;adj.相反的,倒转的,颠倒的;vt.颠倒,倒转" - }, - { - "word": "revive", - "definition": "v.(使)苏醒,(使)复兴,(使)复活,(使)再生效,回想" - }, - { - "word": "revolutionary", - "definition": "adj.革命的" - }, - { - "word": "revolve", - "definition": "v.(使)旋转,考虑,循环出现" - }, - { - "word": "reward", - "definition": "n.报酬,奖金;vt.酬劳,奖赏" - }, - { - "word": "rhythm", - "definition": "n.节奏,韵律" - }, - { - "word": "ridiculous", - "definition": "adj.荒谬的,可笑的" - }, - { - "word": "rig", - "definition": "n.索具装备,钻探设备,钻探平台,钻塔;v.装上索具,配备,装配" - }, - { - "word": "rigorous", - "definition": "adj.严格的,严厉的,严酷的,严峻的" - }, - { - "word": "rim", - "definition": "n.边,轮缘,蓝框;vt.镶边,为...装边,沿...边缘滚动;vi.形成边状" - }, - { - "word": "rip", - "definition": "v.撕,剥,劈,锯,裂开,撕裂;n.裂口,裂缝" - }, - { - "word": "ritual", - "definition": "n.典礼,(宗教)仪式,礼节;adj.典礼的,(宗教)仪式的" - }, - { - "word": "rival", - "definition": "n.竞争者,对手;v.竞争,对抗,相匹敌" - }, - { - "word": "rivalry", - "definition": "n.竞争,竞赛,敌对,敌对状态" - }, - { - "word": "robust", - "definition": "adj.精力充沛的" - }, - { - "word": "romance", - "definition": "n.冒险故事,浪漫史,传奇文学,风流韵事,虚构;vi.写传奇,渲染,虚构" - }, - { - "word": "rot", - "definition": "v.(使)腐烂,(使)腐败;n.腐烂,腐败" - }, - { - "word": "rotary", - "definition": "adj.旋转的" - }, - { - "word": "routine", - "definition": "n.例行公事,常规,日常事务,程序" - }, - { - "word": "royalty", - "definition": "n.皇室,王权" - }, - { - "word": "ruin", - "definition": "v.(使)破产,(使)堕落,毁灭;n.毁灭,崩溃,废墟,遗迹" - }, - { - "word": "rupture", - "definition": "v.破裂,裂开,断绝(关系等),割裂;n.破裂,决裂,敌对,割裂" - }, - { - "word": "sacred", - "definition": "adj.神的,宗教的,庄严的,神圣的" - }, - { - "word": "sacrifice", - "definition": "n.牺牲,献身,祭品,供奉;v.牺牲,献出,献祭,供奉" - }, - { - "word": "safeguard", - "definition": "vt.维护,保护,捍卫;n.安全装置,安全措施" - }, - { - "word": "sake", - "definition": "n.为了...之好处,出于对...的兴趣,缘故,理由,日本米酒" - }, - { - "word": "salute", - "definition": "n.(尤指军队等之)举手礼,升降旗致敬,呜礼炮等,敬礼;v.行礼致敬,敬礼" - }, - { - "word": "salvation", - "definition": "n.拯救,救助" - }, - { - "word": "sample", - "definition": "n.标本,样品,例子;vt.取样,采样,抽取...的样品,试验的一部分,尝试" - }, - { - "word": "sanction", - "definition": "n.&v.批准,同意,支持,制裁,认可" - }, - { - "word": "saturate", - "definition": "v.使饱和,浸透,使充满" - }, - { - "word": "savage", - "definition": "adj.野蛮的,未开化的,凶猛的,残忍的;vt.用暴力对付;n.原始的人,粗鲁的人" - }, - { - "word": "scale", - "definition": "n.刻度,衡量,比例,数值范围,比例尺,天平,等级;vt.依比例决定,攀登,测量;vi.剥落,生水垢,重,攀登,衡量" - }, - { - "word": "scan", - "definition": "v.细看,审视,浏览,扫描;n.扫描" - }, - { - "word": "scandal", - "definition": "n.丑行,丑闻,诽谤,耻辱,流言蜚语" - }, - { - "word": "scar", - "definition": "n.伤痕,疤痕;v.结疤,使留下伤痕,创伤" - }, - { - "word": "scatter", - "definition": "v.分散,散开,撒开,驱散" - }, - { - "word": "scent", - "definition": "n.气味,香味,香水,线索,嗅觉,臭迹;vt.闻出,嗅,发觉,循着遗臭追踪,使充满气味;vi.嗅猎,发出气味" - }, - { - "word": "schedule", - "definition": "n.时间表,进度表;v.确定时间" - }, - { - "word": "scheme", - "definition": "n.安排,配置,计划,阴谋,方案,图解,摘要;v.计划,设计,图谋,策划" - }, - { - "word": "scope", - "definition": "n.(活动)范围,机会,余地" - }, - { - "word": "score", - "definition": "n.得分,乐谱,抓痕,二十,终点线,刻痕,帐目,起跑线;vt.把...记下,刻划,划线,获得,评价;vi.记分,刻痕,得分" - }, - { - "word": "scorn", - "definition": "n.轻蔑,嘲笑,被叱责的人;vt.轻蔑,不屑做" - }, - { - "word": "scramble", - "definition": "n.爬行,攀缘,抢夺,混乱;vi.攀缘,杂乱蔓延,争夺,拼凑,匆忙;vt.攀登,搅乱,使混杂" - }, - { - "word": "scrap", - "definition": "n.小片,废料,剪下来的图片,文章,残余物,废料,打架;vt.扔弃,敲碎,拆毁;vi.互相殴打;adj.零碎的,废弃的" - }, - { - "word": "scrape", - "definition": "n.刮,擦,擦痕,刮擦声,困境;vi.刮掉,擦掉,刮出刺耳声;vt.刮,擦,擦伤,挖成" - }, - { - "word": "scratch", - "definition": "n.乱写,刮擦声,抓痕,擦伤;vt.乱涂,勾抹掉,擦,刮,搔,抓,挖出;vi.发刮擦声,搔,抓;adj.打草稿用的,凑合的" - }, - { - "word": "screw", - "definition": "n.螺丝钉,螺旋,螺杆,螺孔,螺旋桨,吝啬鬼;vt.调节,旋,加强,压榨,强迫,鼓舞;vi.转动,旋,拧" - }, - { - "word": "scrub", - "definition": "v.洗擦,使(气)净化;n.洗擦,擦洗者,矮树,灌木,丛林地,矮小人(或动物);adj.次等的,矮小的,临时凑合的" - }, - { - "word": "scrutiny", - "definition": "n.详细审查" - }, - { - "word": "sculpture", - "definition": "n.雕刻,雕刻品,雕塑,雕塑品,[地理]刻蚀;v.雕刻,雕塑,刻蚀" - }, - { - "word": "seam", - "definition": "n.接缝,线缝,缝合线,衔接口,伤疤,层;vt.缝合,接合,焊合,使留下伤痕;vi.裂开,发生裂痕" - }, - { - "word": "security", - "definition": "n.安全" - }, - { - "word": "seemingly", - "definition": "adv.表面上地" - }, - { - "word": "segment", - "definition": "n.段,节,片断;v.分割" - }, - { - "word": "segregate", - "definition": "v.隔离" - }, - { - "word": "semester", - "definition": "n.学期" - }, - { - "word": "senator", - "definition": "n.参议员,(大学的)评议员,(古罗马的)元老院议员" - }, - { - "word": "sensation", - "definition": "n.感觉,感情,感动,耸人听闻的" - }, - { - "word": "sensible", - "definition": "adj.有感觉的,明智的,有判断力的" - }, - { - "word": "sensitive", - "definition": "adj.敏感的,灵敏的,感光的" - }, - { - "word": "sentiment", - "definition": "n.情操,情感,情绪,观点,多愁善感,感情" - }, - { - "word": "sequence", - "definition": "n.次序,顺序,序列" - }, - { - "word": "sergeant", - "definition": "n.警官,军士" - }, - { - "word": "serial", - "definition": "adj.连续的" - }, - { - "word": "series", - "definition": "n.连续,系列,丛书,级数" - }, - { - "word": "setback", - "definition": "n.顿挫,挫折,退步,逆流,(疾病的)复发" - }, - { - "word": "settle", - "definition": "n.有背的长凳;vt.安放,使定居,安排,解决,决定,整理,支付,使平静;vi.安家,定居,停留,下陷,沉淀,决定,澄清" - }, - { - "word": "settlement", - "definition": "n.沉降,解决,结算,殖民,殖民地" - }, - { - "word": "severe", - "definition": "adj.严厉的,严格的,剧烈的,严重的,严峻的" - }, - { - "word": "shabby", - "definition": "adj.破旧的,褴褛的,低劣的,卑鄙的,不公平的" - }, - { - "word": "shaft", - "definition": "n.轴,杆状物" - }, - { - "word": "shark", - "definition": "n.[鱼]鲨鱼,骗子<俚>内行,专家;v.敲诈" - }, - { - "word": "shatter", - "definition": "n.粉碎,碎片,落花(叶,粒等);vt.打碎,使散开,粉碎,破坏;vi.粉碎,损坏,落叶" - }, - { - "word": "shed", - "definition": "vt.流出,发散,散发,脱落,脱皮,摆脱;n.分水岭,棚,小屋,工棚,货棚;v.把...放入棚内,流下" - }, - { - "word": "sheer", - "definition": "adj.全然的,纯粹的,绝对的,彻底的,透明的;vi.避开,躲避,偏航;vt.使避开,使偏航;adv.完全,全然,峻峭;n.偏航" - }, - { - "word": "shepherd", - "definition": "n.牧羊人,牧羊狗;v.牧羊,看管,带领" - }, - { - "word": "shield", - "definition": "n.防护物,护罩,盾,盾状物;vt.(from)保护,防护;v.遮蔽" - }, - { - "word": "shipment", - "definition": "n.装船,出货" - }, - { - "word": "shove", - "definition": "n.<口>推,挤;vt.<口>推挤,猛推,强使;vi.推" - }, - { - "word": "shrewd", - "definition": "adj.精明" - }, - { - "word": "shrink", - "definition": "v.收缩,(使)皱缩,缩短" - }, - { - "word": "shrub", - "definition": "n.灌木,灌木丛" - }, - { - "word": "shutter", - "definition": "n.耸肩;v.耸肩" - }, - { - "word": "shrug", - "definition": "n.关闭者,百叶窗,快门,<美俚>安眠药;vt.关上,装以遮门,以百叶窗遮闭" - }, - { - "word": "shuttle", - "definition": "n.往返汽车(列车、飞机),航天飞机,梭子,穿梭;v.穿梭往返" - }, - { - "word": "siege", - "definition": "n.包围,围城,长期努力,不断袭击,围攻;v.包围,围攻" - }, - { - "word": "sieve", - "definition": "n.筛,滤网,不会保密的人;v.筛,过滤" - }, - { - "word": "signal", - "definition": "n.信号;adj.信号的;v.发信号,用信号通知" - }, - { - "word": "significant", - "definition": "adj.有意义的,重大的,重要的" - }, - { - "word": "signify", - "definition": "vt.表示,意味;vi.要紧,有重要性;v.颇为重要,表示" - }, - { - "word": "silicon", - "definition": "n.[化]硅,硅元素" - }, - { - "word": "similar", - "definition": "adj.相似的,类似的" - }, - { - "word": "simulate", - "definition": "vt.模拟,模仿,假装,冒充" - }, - { - "word": "simultaneous", - "definition": "adj.同时的,同时发生的" - }, - { - "word": "sip", - "definition": "v.吸吮" - }, - { - "word": "situated", - "definition": "adj.位于,被置于境遇,处于...的立场" - }, - { - "word": "skeleton", - "definition": "n.(动物之)骨架,骨骼,基干,纲要,万能钥匙" - }, - { - "word": "skeptical", - "definition": "adj.怀疑性的,好怀疑的,<口>无神论的" - }, - { - "word": "skip", - "definition": "v.跳,蹦,急速改变,跳读,遗漏,跳跃;n.跳跃" - }, - { - "word": "skull", - "definition": "n.头脑,头骨" - }, - { - "word": "slack", - "definition": "n.松弛,静止,淡季,闲散;adj.松弛的,不流畅的,疏忽的,软弱的,漏水的,呆滞的,懒散的;adv.马虎地,缓慢地;vt.使松弛,使缓慢,马虎从事;vi.松懈,减弱,松驰" - }, - { - "word": "slap", - "definition": "vt.拍,掌击,拍击;n.拍,掌击,拍击" - }, - { - "word": "slash", - "definition": "v.猛砍,鞭打,砍伤,大量削减,严历批评,抽打;n.猛砍,(大幅度)削减,斜线" - }, - { - "word": "slaughter", - "definition": "n.屠宰,残杀,屠杀;v.屠宰,残杀,屠杀" - }, - { - "word": "slice", - "definition": "n.薄片,切片,一份,部分,片段;v.切(片)" - }, - { - "word": "slick", - "definition": "adj.光滑的,熟练的,聪明的,华而不实的,陈腐的,平凡的;adv.灵活地,聪明地;vt.使光滑,使漂亮;n.平滑水面,平滑器,修光工具;vi.打扮整洁" - }, - { - "word": "slide", - "definition": "v.(使)滑动,(使)滑行;n.滑,滑动,幻灯片" - }, - { - "word": "slight", - "definition": "adj.轻微的,微小的" - }, - { - "word": "slip", - "definition": "n.滑倒,事故,片,纸片;vi.滑动,滑倒,失足,减退;vt.使滑动,滑过,摆脱,闪开,塞入;adj.滑动的,活络的,有活结的;abbr.SerialLineInterfaceProtocol,串行线路接口协议,是旧式的协议" - }, - { - "word": "slippery", - "definition": "adj.滑的,光滑的" - }, - { - "word": "slogan", - "definition": "n.口号,标语" - }, - { - "word": "slope", - "definition": "n.斜坡,斜面,倾斜;v.(使)顺斜" - }, - { - "word": "slot", - "definition": "n.缝,狭槽,位置,水沟,细长的孔,硬币投币口,狭通道,足迹;vt.开槽于,跟踪" - }, - { - "word": "slum", - "definition": "n.贫民窟;vi.访问贫民区" - }, - { - "word": "slump", - "definition": "n.消沉,衰退,(物价)暴跌;v.失败,消沉,(物价)暴跌,跌落" - }, - { - "word": "smash", - "definition": "v.打碎,粉碎;n.打碎,粉碎;adj.出色的" - }, - { - "word": "smuggle", - "definition": "n.走私,偷带;v.走私" - }, - { - "word": "snack", - "definition": "n.小吃,快餐,一份;v.吃快餐(小吃)" - }, - { - "word": "snatch", - "definition": "v.攫取;n.攫取" - }, - { - "word": "sneak", - "definition": "vi.鬼鬼祟祟做事;vt.偷偷摸摸做,<口>偷窃;n.鬼鬼祟祟人,偷偷摸摸行为,<美口>帆布胶底运动鞋;adj.暗中进行的" - }, - { - "word": "sniff", - "definition": "v.用力吸,嗅,闻到,发觉,轻视,用力吸气;n.吸,闻,吸气声,嗤之以鼻" - }, - { - "word": "soar", - "definition": "v.高飞,高丛,滑翔,剧增,昂扬;n.高飞范围,高涨程度" - }, - { - "word": "sober", - "definition": "adj.冷静的;v.镇定" - }, - { - "word": "sociology", - "definition": "n.社会学" - }, - { - "word": "solemn", - "definition": "adj.庄严的,隆重的,严肃的" - }, - { - "word": "solicitor", - "definition": "n.律师,法律顾问" - }, - { - "word": "solidarity", - "definition": "n.团结" - }, - { - "word": "solitary", - "definition": "adj.孤独的" - }, - { - "word": "solo", - "definition": "n.独奏曲;adj.单独的" - }, - { - "word": "soluble", - "definition": "adj.可溶的,可溶解的" - }, - { - "word": "solution", - "definition": "n.解答,解决办法,溶解,溶液,解决方案" - }, - { - "word": "sophisticated", - "definition": "adj.诡辩的,久经世故的" - }, - { - "word": "sour", - "definition": "adj.酸的,发酵的,酸腐的,酸味的" - }, - { - "word": "sovereign", - "definition": "n.君主,统治;adj.至高无上的,君主的,独立自主的,完全的" - }, - { - "word": "spacious", - "definition": "adj.广大的,大规模的" - }, - { - "word": "span", - "definition": "n.跨度,跨距,范围;v.横越" - }, - { - "word": "sparkle", - "definition": "v.发火花,(使)闪耀,(香槟酒等)发泡,用眼神表达,发光闪烁;n.火花,闪光,光彩,活力,发泡" - }, - { - "word": "specialist", - "definition": "n.专门医师,专家" - }, - { - "word": "specialty", - "definition": "n.专业" - }, - { - "word": "species", - "definition": "n.种类,(原)核素;n.[律]式样;n.[宗]圣餐物" - }, - { - "word": "specific", - "definition": "n.特效药,细节;adj.详细而精确的,明确的,特殊的,特效的,[生物]种的" - }, - { - "word": "specification", - "definition": "n.详述,规格,说明书,规范" - }, - { - "word": "spectacle", - "definition": "n.观览物,展览物,公开展示,奇观,景象,光景,(apairof~s)眼镜" - }, - { - "word": "spectator", - "definition": "n.观众(指比赛或表演)" - }, - { - "word": "spectrum", - "definition": "n.光,光谱,型谱,频谱" - }, - { - "word": "speculate", - "definition": "vi.推测,思索,做投机买卖" - }, - { - "word": "spice", - "definition": "n.香料,调味品,趣味,意味,情趣" - }, - { - "word": "spine", - "definition": "n.脊骨,书脊,地面隆起地带,中心,剌" - }, - { - "word": "spiral", - "definition": "adj.螺旋形的;n.螺旋;v.盘旋" - }, - { - "word": "spite", - "definition": "n.(in~of)不顾,不管,敌意;v.困扰" - }, - { - "word": "splash", - "definition": "n.溅,飞溅,斑点;v.溅,泼,溅湿" - }, - { - "word": "spoil", - "definition": "vt.损坏,搞糟,宠坏,溺爱;v.扰乱" - }, - { - "word": "sponge", - "definition": "n.海绵,(外科用的)棉球,纱布;v.用海绵冼涤,揩拭,清除,用海绵吸收(液体),(俗)依赖某人生活,诈取某人,海绵般吸收" - }, - { - "word": "spontaneous", - "definition": "adj.自发的,自然产生的" - }, - { - "word": "spouse", - "definition": "n.配偶(指夫或妻)" - }, - { - "word": "sprinkle", - "definition": "v.撒(某物)于(某物之表面),洒,喷撒" - }, - { - "word": "spy", - "definition": "n.特工人员,间谍,侦探,探员,秘密侦察他人行动者;v.侦察,侦察,发现" - }, - { - "word": "squad", - "definition": "n.班" - }, - { - "word": "stab", - "definition": "n.刺,刺伤的伤口,一阵突然而强烈的感觉,中伤,伤痛;v.剌,刺伤,伤害(感情等)" - }, - { - "word": "stability", - "definition": "n.稳定性" - }, - { - "word": "stabilize", - "definition": "v.稳定" - }, - { - "word": "stable", - "definition": "adj.稳定的" - }, - { - "word": "stack", - "definition": "n.堆,一堆,堆栈;v.堆叠" - }, - { - "word": "stagger", - "definition": "v.摇晃,蹒跚,交错,摇摇摆摆;adj.交错的" - }, - { - "word": "staircase", - "definition": "n.楼梯" - }, - { - "word": "stalk", - "definition": "n.茎,柄,梗,秆" - }, - { - "word": "stall", - "definition": "n.货摊,畜栏,厩,出售摊;v.(使)停转,(使)停止,迟延" - }, - { - "word": "standpoint", - "definition": "n.立场,观点" - }, - { - "word": "staple", - "definition": "n.钉书钉,钉,主要产品(或商品),原材料,主要成分,来源;adj.主要的,常用的,大宗生产的;v.把...分类,把...分级" - }, - { - "word": "startle", - "definition": "v.震惊" - }, - { - "word": "statement", - "definition": "n.声明,陈述,综述" - }, - { - "word": "statesman", - "definition": "n.政治家" - }, - { - "word": "stationary", - "definition": "固定的" - }, - { - "word": "status", - "definition": "n.身份,地位,情形,状况" - }, - { - "word": "stereo", - "definition": "n.立体声系统,立体声,[印]铅版,立体照片;adj.立体的,立体感觉的" - }, - { - "word": "stereotype", - "definition": "n.[印]铅版,陈腔滥调,老套;vt.使用铅版,套用老套,使一成不变" - }, - { - "word": "stern", - "definition": "adj.严厉的,苛刻的;n.船尾" - }, - { - "word": "sticky", - "definition": "adj.粘的,粘性的" - }, - { - "word": "stimulus", - "definition": "n.刺激物,促进因素,刺激,刺激" - }, - { - "word": "stock", - "definition": "n.树干,库存,股票,股份,托盘,祖先,原料;adj.股票的,普通的,常备的,存货的,繁殖用的;vt.装把手于,进货,备有,放牧;vi.出新芽,采购" - }, - { - "word": "straightforward", - "definition": "adj.正直的,坦率的,简单的,易懂的,直接了当的;adv.坦率地" - }, - { - "word": "strain", - "definition": "n.过度的疲劳,紧张,张力,应变;vt.扭伤,损伤;v.拉紧,扯紧,(使)紧张,尽力" - }, - { - "word": "strand", - "definition": "n.绳、线之一股,线,绳,串,海滨,河岸;vi.搁浅;vt.使搁浅,使落后,使陷于困境,弄断,搓" - }, - { - "word": "strategy", - "definition": "n.策略,军略" - }, - { - "word": "stray", - "definition": "v.迷路,偏离,漂泊,漂泊游荡;adj.迷路的,离群的,偶遇的" - }, - { - "word": "streak", - "definition": "v.飞跑,加上条纹" - }, - { - "word": "stream", - "definition": "n.溪,川,流,一股,一串,河流;v.流,涌,流注" - }, - { - "word": "streamline", - "definition": "adj.流线型的" - }, - { - "word": "stride", - "definition": "v.大步走(过),跨过,大步行走;n.步幅" - }, - { - "word": "string", - "definition": "n.线,细绳,一串,一行;v.排成一列" - }, - { - "word": "strive", - "definition": "v.努力,奋斗,力争,斗争" - }, - { - "word": "stroke", - "definition": "n.击,敲,报时的钟声,(网球等)一击,(划船等)一划,(绘画等)一笔,一次努力,打击;vt.抚摸" - }, - { - "word": "stroll", - "definition": "n.漫步,闲逛,四处流浪;v.闲逛,漫步,跋涉于" - }, - { - "word": "stubborn", - "definition": "adj.顽固的,固执的,坚定的,坚决的,难应付的,难处理的" - }, - { - "word": "stumble", - "definition": "v.绊倒,使困惑,蹒跚,结结巴巴地说话,踌躇;n.绊倒,错误" - }, - { - "word": "stump", - "definition": "n.树桩,残余,烟头;v.掘去树桩,砍成树桩,绊倒,难住,截去" - }, - { - "word": "stun", - "definition": "vt.使晕倒,使惊吓,打晕;n.晕眩,打昏,惊倒" - }, - { - "word": "sturdy", - "definition": "adj.强健的,坚定的,毫不含糊的;n.[兽医]家畜晕倒病" - }, - { - "word": "subjective", - "definition": "adj.主观的,个人的" - }, - { - "word": "submarine", - "definition": "n.潜水艇,潜艇;adj.水下的,海底的" - }, - { - "word": "submit", - "definition": "v.(使)服从,(使)顺从;vt.提交,递交" - }, - { - "word": "subordinate", - "definition": "adj.次要的,从属的,下级的;n.下属;v.服从" - }, - { - "word": "subscribe", - "definition": "v.捐款,订阅,签署(文件),赞成,预订" - }, - { - "word": "subsequent", - "definition": "adj.后来的,并发的" - }, - { - "word": "subsidiary", - "definition": "adj.辅助的,补充的" - }, - { - "word": "subsidy", - "definition": "n.补助金,津贴" - }, - { - "word": "substance", - "definition": "n.物质,实质,主旨" - }, - { - "word": "substantial", - "definition": "adj.坚固的,实质的,真实的,充实的" - }, - { - "word": "substitute", - "definition": "n.代用品,代替者,替代品;v.代替,替换,替代" - }, - { - "word": "subtle", - "definition": "adj.狡猾的,敏感的,微妙的,精细的,稀薄的" - }, - { - "word": "subtract", - "definition": "v.(~from)减去,减" - }, - { - "word": "suburb", - "definition": "n.市郊,郊区" - }, - { - "word": "successive", - "definition": "adj.继承的,连续的" - }, - { - "word": "successor", - "definition": "n.继承者,接任者,后续的事物" - }, - { - "word": "sue", - "definition": "vt.控告,向...请求,请愿;vi.提出诉讼,提出请求" - }, - { - "word": "suffice", - "definition": "vi.足够,有能力;vt.使满足" - }, - { - "word": "sufficient", - "definition": "adj.充分的,足够的" - }, - { - "word": "suite", - "definition": "n.(一批)随员,(一套)家具,套房,套,组,组曲" - }, - { - "word": "sulfur", - "definition": "n.[化]硫磺,硫黄;vt.用硫磺处理" - }, - { - "word": "summit", - "definition": "n.顶点,最高阶层;adj.政府首脑的;vi.参加最高级会议的" - }, - { - "word": "summon", - "definition": "v.召集,召唤,号召,鼓起,振作" - }, - { - "word": "superficial", - "definition": "adj.表面的,肤浅的,浅薄的" - }, - { - "word": "superintendent", - "definition": "n.主管,负责人,指挥者,管理者" - }, - { - "word": "superior", - "definition": "n.长者,高手,上级;adj.较高的,上级的,上好的,出众的,高傲的" - }, - { - "word": "superiority", - "definition": "n.优越,高傲" - }, - { - "word": "supersonic", - "definition": "adj.超音波的;n.超声波,超声频" - }, - { - "word": "supervise", - "definition": "v.监督,管理,指导" - }, - { - "word": "supplement", - "definition": "n.补遗,补充,附录,增刊;v.补充" - }, - { - "word": "supplementary", - "definition": "n.(supplementaries)增补者,增补物;adj.附助的" - }, - { - "word": "suppress", - "definition": "vt.镇压,抑制,查禁,使止住" - }, - { - "word": "supreme", - "definition": "adj.极度的,极大的,至高的,最高的" - }, - { - "word": "surge", - "definition": "n.巨涌,汹涌,澎湃;vi.汹涌,澎湃,振荡,滑脱,放松;vt.使汹涌奔腾,急放" - }, - { - "word": "surgeon", - "definition": "n.外科医生" - }, - { - "word": "surgery", - "definition": "n.外科,外科学,手术室,诊疗室" - }, - { - "word": "surpass", - "definition": "vt.超越,胜过" - }, - { - "word": "surplus", - "definition": "n.剩余,过剩,[会计]盈余;adj.过剩的,剩余的;vt.转让,卖掉" - }, - { - "word": "survival", - "definition": "n.生存,幸存,残存,幸存者,残存物" - }, - { - "word": "survive", - "definition": "v.幸免于,幸存,生还" - }, - { - "word": "susceptible", - "definition": "adj.易受影响的,易感动的,容许...的;n.(因缺乏免疫力而)易得病的人" - }, - { - "word": "suspension", - "definition": "n.吊,悬浮,悬浮液,暂停,中止,悬而未决,延迟" - }, - { - "word": "suspicion", - "definition": "n.猜疑,怀疑" - }, - { - "word": "suspicious", - "definition": "adj.(~of)可疑的,怀疑的" - }, - { - "word": "sustain", - "definition": "vt.支撑,撑住,维持,持续" - }, - { - "word": "swamp", - "definition": "n.沼泽,湿地,煤层聚水;v.陷入沼泽,淹没,覆没" - }, - { - "word": "swap", - "definition": "v.交换;n.交换" - }, - { - "word": "symbol", - "definition": "n.符号,记号,象征" - }, - { - "word": "symmetry", - "definition": "n.对称,匀称" - }, - { - "word": "sympathetic", - "definition": "adj.有同情心的,合意的,赞成的;n.[解]交感神经,容易感受的人" - }, - { - "word": "sympathy", - "definition": "n.同情,同情心" - }, - { - "word": "symphony", - "definition": "n.交响乐,交响曲" - }, - { - "word": "symposium", - "definition": "n.讨论会,座谈会" - }, - { - "word": "syndrome", - "definition": "n.综合病症" - }, - { - "word": "synthesis", - "definition": "n.综合,合成" - }, - { - "word": "tack", - "definition": "n.大头钉,粗缝,行动方针,食物;vt.以大头针钉住,附加;vi.抢风航行,作文字形移动" - }, - { - "word": "tackle", - "definition": "n.工具,复滑车,滑车,辘轱,用具,装备,扭倒;vt.固定,应付(难事等),处理,解决,抓住;vi.捉住,扭住,扭倒" - }, - { - "word": "tame", - "definition": "adj.(动物)驯服的,柔顺的,(人)没精打彩的,顺从的,被开垦的,沉闷的,乏味的,平淡的;vt.驯养,驯服,制服,使变得平淡;vi.变得驯服" - }, - { - "word": "tan", - "definition": "n.日晒后的颜色,棕褐色,茶色;adj.棕褐色的,茶色;v.晒黑,晒成褐色" - }, - { - "word": "tangle", - "definition": "n.混乱状态;v.处于混乱状态" - }, - { - "word": "tanker", - "definition": "n.油轮" - }, - { - "word": "target", - "definition": "n.目标,对象,靶子" - }, - { - "word": "tariff", - "definition": "n.关税,关税表,税则,(旅馆,饭店等的)价目表、价格表;vt.课以关税" - }, - { - "word": "tease", - "definition": "n.揶揄,戏弄,逗惹;vt.取笑,逗恼,奚落,欺负,嘲弄,取笑,强求,梳理" - }, - { - "word": "tedious", - "definition": "adj.单调乏味的,沉闷的,冗长乏味的" - }, - { - "word": "telecommunication", - "definition": "n.电讯,长途通讯,无线电通讯,电信学" - }, - { - "word": "temper", - "definition": "n.(钢等)韧度,回火,性情,脾气,情绪,心情,调剂,趋向;v.(冶金)回火、锻炼,调和,调节" - }, - { - "word": "temperament", - "definition": "n.气质,性情,易激动,急躁" - }, - { - "word": "tempo", - "definition": "n.(音乐)速度、拍子,发展速度" - }, - { - "word": "tempt", - "definition": "vt.诱惑,引诱,吸引,使感兴趣,考验,试探" - }, - { - "word": "tenant", - "definition": "n.承租人,房客,租客;v.出租" - }, - { - "word": "tendency", - "definition": "n.趋向,倾向" - }, - { - "word": "tentative", - "definition": "n.试验,假设;adj.试验性的,试探的,尝试的,暂定的" - }, - { - "word": "terminate", - "definition": "v.停止,结束,终止" - }, - { - "word": "terrace", - "definition": "n.梯田的一层,梯田,房屋之平顶,露台,阳台,倾斜的平地;adj.(女服)叠层式的;vt.使成梯形地,使有平台屋顶" - }, - { - "word": "terrain", - "definition": "n.地形" - }, - { - "word": "terrific", - "definition": "adj.令人恐怖的" - }, - { - "word": "terrify", - "definition": "vt.使恐怖,恐吓" - }, - { - "word": "territory", - "definition": "n.领土,版图,地域" - }, - { - "word": "testify", - "definition": "v.证明,证实,作证" - }, - { - "word": "testimony", - "definition": "n.证词(尤指在法庭所作的),宣言,陈述" - }, - { - "word": "texture", - "definition": "n.(织品的)质地,(木材,岩石等的)纹理,(皮肤)肌理,(文艺作品)结构" - }, - { - "word": "thanksgiving", - "definition": "n.感谢,[宗]感恩祈祷" - }, - { - "word": "theft", - "definition": "n.偷,行窃,偷窃的事例,偷窃行为" - }, - { - "word": "theme", - "definition": "n.(谈话,写作等的)题目,主题,学生的作文,作文题,[音乐]主题,主题曲,主旋律" - }, - { - "word": "thereafter", - "definition": "adv.其后,从那时以后" - }, - { - "word": "therefore", - "definition": "adv.因此,所以" - }, - { - "word": "thermal", - "definition": "adj.热的,热量的" - }, - { - "word": "thesis", - "definition": "n.论题,论文" - }, - { - "word": "thigh", - "definition": "n.大腿,股" - }, - { - "word": "thorn", - "definition": "n.[植]刺,棘,荆棘" - }, - { - "word": "threaten", - "definition": "vt.恐吓,威胁,预示(危险),似有发生或来临的可能,可能来临" - }, - { - "word": "threshold", - "definition": "n.开始,开端,极限" - }, - { - "word": "thrill", - "definition": "v.发抖" - }, - { - "word": "thrive", - "definition": "v.兴旺,繁荣,茁壮成长,旺盛" - }, - { - "word": "throne", - "definition": "n.王座,君主" - }, - { - "word": "tick", - "definition": "n.滴答声,记号,勾号,扁虱;v.滴答地响,标以记号,作滴答声" - }, - { - "word": "tickle", - "definition": "n.搔,胳肢,发痒;vt.胳肢,逗笑,使高兴,使发痒;vi.觉得痒,使人痒" - }, - { - "word": "tile", - "definition": "n.瓦片,瓷砖" - }, - { - "word": "tilt", - "definition": "v.(使)倾斜,(使)翘起,以言词或文字抨击" - }, - { - "word": "timely", - "definition": "adj.及时的,适时的" - }, - { - "word": "timid", - "definition": "adj.胆小的,羞怯的" - }, - { - "word": "tissue", - "definition": "n.薄的纱织品,薄纸,棉纸,[生]组织,连篇" - }, - { - "word": "token", - "definition": "n.表示,向征,记号,代币;adj.象征的,表意的" - }, - { - "word": "tolerant", - "definition": "adj.容忍的,宽恕的,有耐药力的" - }, - { - "word": "toll", - "definition": "n.通行税(费),费,代价,钟声;vt.征收,敲钟,鸣(钟)(特指宣布死亡),勾引,引诱;vi.征税,鸣钟" - }, - { - "word": "toss", - "definition": "v.投,掷" - }, - { - "word": "tow", - "definition": "n.拖,拖曳所用之绳,麻的粗纤维;vt.拖,曳,牵引;vi.拖行,被拖带" - }, - { - "word": "toxic", - "definition": "adj.有毒的,中毒的" - }, - { - "word": "tract", - "definition": "n.广阔的地面,土地,地方,地域,(解剖)管道,小册子" - }, - { - "word": "trademark", - "definition": "n.商标" - }, - { - "word": "tragic", - "definition": "adj.悲惨的,悲剧的;n.(文艺作品或生活中的)悲剧因素,悲剧风格" - }, - { - "word": "trait", - "definition": "n.显著的特点,特性" - }, - { - "word": "transaction", - "definition": "n.办理,处理,会报,学报,交易,事务,处理事务" - }, - { - "word": "transcend", - "definition": "vt.超越,胜过" - }, - { - "word": "transfer", - "definition": "v搬转移" - }, - { - "word": "transform", - "definition": "vt.转换,改变,改造,使...变形;vi.改变,转化,变换;n.[数]变换(式),[语]转换" - }, - { - "word": "transient", - "definition": "adj.短暂的,瞬时的;n.瞬时现象" - }, - { - "word": "transistor", - "definition": "n.[电子]晶体管" - }, - { - "word": "transit", - "definition": "n.经过,通行,搬运,运输,运输线,转变;vt.横越,通过,经过;vi.通过;n.[天]中天,经纬仪" - }, - { - "word": "transition", - "definition": "n.转变,转换,跃迁,过渡,变调" - }, - { - "word": "transmission", - "definition": "n.播送,发射,传动,传送,传输,转播" - }, - { - "word": "transmit", - "definition": "vt.传输,转送,传达,传导,发射,遗传,传播;vi.发射信号,发报" - }, - { - "word": "transplant", - "definition": "v.移植,移种,移民,迁移;n.移植,被移植物,移居者" - }, - { - "word": "transport", - "definition": "n.传送器,运输,运输机,激动,流放犯,狂喜;vt.传送,运输,流放,放逐" - }, - { - "word": "traverse", - "definition": "n.横贯,横断,障碍,否认,反驳,通廊;vt.横过,穿过,经过,在...来回移动,反对,详细研究;vi.横越,旋转,来回移动;adj.横断的,横的" - }, - { - "word": "treaty", - "definition": "n.条约,谈判" - }, - { - "word": "tremendous", - "definition": "adj.极大的,巨大的" - }, - { - "word": "trench", - "definition": "n.沟渠,堑壕,管沟,电缆沟,战壕;v.掘沟,挖战壕" - }, - { - "word": "trend", - "definition": "n.倾向,趋势;vi.伸向,倾向,通向" - }, - { - "word": "trial", - "definition": "n.试验,考验,审讯,审判" - }, - { - "word": "tribe", - "definition": "n.部落,部族" - }, - { - "word": "tribute", - "definition": "n.贡品,礼物,颂词,殷勤,贡物" - }, - { - "word": "trifle", - "definition": "n.琐事,少量,蛋糕,小事;v.开玩笑,玩弄,闭混,浪费,嘲弄" - }, - { - "word": "trigger", - "definition": "vt.引发,引起,触发;n.板机" - }, - { - "word": "triple", - "definition": "n.三倍数,三个一组;adj.三倍的;vt.三倍与;vi.增至三倍" - }, - { - "word": "triumph", - "definition": "n.胜利,成功;v.获得胜利" - }, - { - "word": "trivial", - "definition": "adj.琐细的,价值不高的,微不足道的" - }, - { - "word": "tub", - "definition": "n.浴盆" - }, - { - "word": "tuck", - "definition": "n.缝摺,活力,鼓声,船尾突出部下方,食物(尤指点心,蛋糕);vt.打摺,卷起,挤进,塞,使隐藏;vi.折成摺子,缩拢" - }, - { - "word": "tug", - "definition": "v.用力拖,吃力地搬运,苦干,用拖轮拖,拖拉;n.拖,苦干,拖船,(牵引用的)绳索" - }, - { - "word": "tuition", - "definition": "n.学费" - }, - { - "word": "tumble", - "definition": "n.跌倒,摔跤,翻斤斗;vi.翻倒,摔倒,倒塌,滚动,翻筋斗,仓惶地行动;vt.使摔倒,使滚翻,弄乱" - }, - { - "word": "tunnel", - "definition": "n.隧道,地道" - }, - { - "word": "turbulent", - "definition": "adj.狂暴的,吵闹的" - }, - { - "word": "turnover", - "definition": "n.翻覆,翻折,半圆卷饼,流通量,营业额,周转;adj.有一部分翻转的,可翻转的" - }, - { - "word": "tutor", - "definition": "n.家庭教师,(大学)指导教师,助教,监护人,辅导教师;v.辅导" - }, - { - "word": "twist", - "definition": "n.一扭,扭曲,盘旋,曲折,歪曲,手法,螺旋状;vt.拧,扭曲,绞,搓,捻,使苦恼,使转动,编织;vi.扭弯,扭曲,缠绕,扭动,呈螺旋形" - }, - { - "word": "ultimate", - "definition": "adj.最后的,最终的,根本的;n.最终" - }, - { - "word": "ultraviolet", - "definition": "adj.紫外线的,紫外的;n.紫外线辐射" - }, - { - "word": "unanimous", - "definition": "adj.意见一致的,无异议的" - }, - { - "word": "underestimate", - "definition": "vt.低估,看轻;n.低估" - }, - { - "word": "undergo", - "definition": "vt.经历,遭受,忍受" - }, - { - "word": "underlying", - "definition": "adj.在下面的,根本的,潜在的,[商]优先的" - }, - { - "word": "undermine", - "definition": "v.破坏" - }, - { - "word": "unemployment", - "definition": "n.失业,失业人数" - }, - { - "word": "unfold", - "definition": "vt.打开,显露,开展,阐明;vi.伸展,开花,呈现;vt.放(羊)出栏" - }, - { - "word": "unity", - "definition": "n.团结,联合,统一,一致" - }, - { - "word": "unique", - "definition": "adj.唯一的,独特的" - }, - { - "word": "unity", - "definition": "n.团结,联合,统一,一致" - }, - { - "word": "universe", - "definition": "n.宇宙,世界,万物,领域" - }, - { - "word": "update", - "definition": "v.使现代化,修正,校正,更新;n.现代化,更新" - }, - { - "word": "upgrade", - "definition": "n.升级,上升,上坡;adv.往上;vt.使升级,提升,改良品种" - }, - { - "word": "uphold", - "definition": "vt.支持,赞成" - }, - { - "word": "upright", - "definition": "adj.垂直的,竖式的,正直的,诚实的,合乎正道的;adv.笔直,竖立着;n.垂直,竖立" - }, - { - "word": "urban", - "definition": "adj.城市的,市内的" - }, - { - "word": "urge", - "definition": "vt.催促,力劝;n.强烈欲望,迫切要求;v.促进" - }, - { - "word": "utilize", - "definition": "vt.利用" - }, - { - "word": "utmost", - "definition": "n.极限,最大可能,极力;adj.极度的,最远的" - }, - { - "word": "vacant", - "definition": "adj.空的,空白的,空灵的,头脑空虚的,神情茫然的,空闲的,空缺的" - }, - { - "word": "vain", - "definition": "adj.徒然的,无益的,虚荣的,空虚的,自负的,愚蠢的" - }, - { - "word": "valid", - "definition": "adj.[律]有效的,有根据的,正当的,正确的" - }, - { - "word": "valve", - "definition": "n.阀,[英]电子管,真空管" - }, - { - "word": "van", - "definition": "n.有篷货车,先锋,前驱,前卫;vt.用车搬运" - }, - { - "word": "variation", - "definition": "n.变更,变化,变异,变种,[音]变奏,变调" - }, - { - "word": "various", - "definition": "adj.不同的,各种各样的,多方面的,多样的" - }, - { - "word": "vary", - "definition": "vt.改变,变更,使多样化;vi.变化,不同,违反" - }, - { - "word": "vast", - "definition": "adj.巨大的,辽阔的,大量的,巨额的" - }, - { - "word": "vegetation", - "definition": "n.[植]植被,(总称)植物、草木,(植物的)生长、呆板单调的生活" - }, - { - "word": "vehicle", - "definition": "n.交通工具,车辆,媒介物,传达手段" - }, - { - "word": "veil", - "definition": "n.面纱,面罩,帐,幕,掩饰物,遮蔽物,口实,假托;vt.戴面纱,隐藏,遮蔽,掩饰;vi.蒙上面纱" - }, - { - "word": "vein", - "definition": "n.血管,静脉,叶脉,翅脉,矿脉,纹理,性情,心绪;vt.使成脉络,象脉络般分布于" - }, - { - "word": "velocity", - "definition": "n.速度,速率,迅速,周转率" - }, - { - "word": "velvet", - "definition": "n.天鹅绒,柔软,光滑;adj.天鹅绒的,柔软的,光滑的" - }, - { - "word": "vent", - "definition": "n.通风孔,出烟孔,出口,(感情等的)发泄;v.放出,排出,发泄" - }, - { - "word": "ventilate", - "definition": "vt.使通风,给...装通风设备" - }, - { - "word": "venture", - "definition": "n.冒险,投机,风险;v.冒险,冒昧,斗胆,胆敢(谦语)" - }, - { - "word": "verbal", - "definition": "adj.口头的" - }, - { - "word": "verdict", - "definition": "n.[律](陪审团的)裁决,判决,判断,定论,结论" - }, - { - "word": "verge", - "definition": "v.濒临;n.边缘" - }, - { - "word": "verify", - "definition": "vt.检验,校验,查证,核实;[计]打开或关闭文件的读写校验" - }, - { - "word": "versatile", - "definition": "adj.通用的,万能的,多才多艺的,多面手的" - }, - { - "word": "verse", - "definition": "n.韵文,诗,诗节,诗句,诗篇" - }, - { - "word": "version", - "definition": "n.译文,译本,翻译" - }, - { - "word": "versus", - "definition": "prep.对(指诉讼,比赛等中),与...相对" - }, - { - "word": "vertical", - "definition": "adj.垂直的,直立的,顶点的,[解]头顶的;n.垂直线,垂直面,竖向" - }, - { - "word": "veto", - "definition": "n.否决,禁止,否决权;vt.否决,禁止" - }, - { - "word": "vice", - "definition": "n.恶习,恶行,坏脾气,罪恶,堕落,老虎钳,缺点,缺陷;vt.钳住;prep.代替" - }, - { - "word": "vicinity", - "definition": "n.邻近,附近,接近" - }, - { - "word": "vicious", - "definition": "adj.恶的,不道德的,恶意的,刻毒的,堕落的,品性不端的,有错误的" - }, - { - "word": "victim", - "definition": "n.受害人,牺牲者,牺牲品" - }, - { - "word": "vigorous", - "definition": "adj.精力旺盛的,有力的,健壮的" - }, - { - "word": "violate", - "definition": "vt.违犯,亵渎(圣物),冒犯,干扰,违反,妨碍,侵犯,强暴" - }, - { - "word": "violent", - "definition": "adj.猛烈的,激烈的,暴力引起的,强暴的" - }, - { - "word": "virgin", - "definition": "n.处女,处男;adj.处女的,童贞的,纯洁的,洁白无瑕疵的,未被玷污的,原始的,处于原状态的,未伐过的森林;美国游戏公司" - }, - { - "word": "virtual", - "definition": "adj.虚的,实质的,[物]有效的,事实上的" - }, - { - "word": "virtue", - "definition": "n.德行,美德,贞操,优点,功效,效力,英勇" - }, - { - "word": "visa", - "definition": "n.签证;vt.签准;维萨信用卡" - }, - { - "word": "vision", - "definition": "n.视力,视觉,先见之明,眼力,想象力,幻想,幻影,景象;vt.梦见,想象,显示" - }, - { - "word": "visualize", - "definition": "vt.形象,形象化,想象;vi.显现" - }, - { - "word": "vital", - "definition": "adj.生死攸关的,重大的,生命的,生机的,至关重要的,所必需的" - }, - { - "word": "vivid", - "definition": "adj.生动的,鲜明的,鲜艳的,大胆的,清晰的,活泼的,逼真的" - }, - { - "word": "vocal", - "definition": "adj.发嗓音的,声音的,有声的,歌唱的;n.元音,声乐作品" - }, - { - "word": "vocational", - "definition": "adj.职业的" - }, - { - "word": "void", - "definition": "n.空间,空旷,空虚,怅惘;adj.空的,无人的,空闲的,无效的,无用的,没有的" - }, - { - "word": "volume", - "definition": "n.卷,册,体积,量,大量,音量" - }, - { - "word": "voluntary", - "definition": "adj.自动的,自愿的,主动的,故意的,非官办的,志愿的,自发的" - }, - { - "word": "volunteer", - "definition": "n.志愿者,志愿兵;adj.志愿的,义务的,无偿的;v.自愿" - }, - { - "word": "vulgar", - "definition": "adj.粗俗的,庸俗的,普通的,通俗的,本土的;n.<古>平民,百姓" - }, - { - "word": "vulnerable", - "definition": "adj.易受攻击的,易受...的攻击" - }, - { - "word": "wallet", - "definition": "n.皮夹,钱夹,钓鱼带" - }, - { - "word": "ward", - "definition": "n.守卫,保卫,保护,牢房,病房,行政区,监护,锁孔;vt.守护,保卫,防止,挡住,躲开,避免" - }, - { - "word": "wardrobe", - "definition": "n.衣柜,衣厨,衣室,衣服,行头,剧装" - }, - { - "word": "warehouse", - "definition": "n.仓库,货栈,大商店;vt.贮入仓库,<俚>[经]以他人名义购进(股票)" - }, - { - "word": "warfare", - "definition": "n.战争,作战,冲突,竞争" - }, - { - "word": "warrant", - "definition": "n.授权,正当理由,根据,证明,凭证,委任状,批准,许可证;vt.保证,辩解,担保,批准,使有正当理由" - }, - { - "word": "watertight", - "definition": "adj.不漏水的,水密的" - }, - { - "word": "watt", - "definition": "n.瓦特(1736-1819,英国工程师,发明家)" - }, - { - "word": "wax", - "definition": "n.蜡,蜡状物,增加,月亮由亏转盈;vi.变大,增大,月亮渐满;vt.上蜡于" - }, - { - "word": "wealth", - "definition": "n.财富,财产,大量" - }, - { - "word": "wealthy", - "definition": "adj.富有的,丰裕的,充分的;n.富人,有钱人" - }, - { - "word": "weapon", - "definition": "n.武器" - }, - { - "word": "weary", - "definition": "adj.疲倦的,厌倦的,令人厌烦的,疲劳;v.疲倦,厌倦,厌烦" - }, - { - "word": "web", - "definition": "n.网,蛛丝,蹼,翼手,织物,圈套,卷筒纸;vi.使陷入罗网,形成网;vt.织蜘蛛网于,使落入圈套;环球网" - }, - { - "word": "wedge", - "definition": "n.楔;vt.楔入,楔进" - }, - { - "word": "weird", - "definition": "adj.怪异的,超自然的,神秘的,不可思议的,超乎事理之外的;n.<古><苏格兰>命运,预言,符咒" - }, - { - "word": "whereas", - "definition": "conj.然而,反之,鉴于,尽管,但是" - }, - { - "word": "whereby", - "definition": "adv.凭什么,为何" - }, - { - "word": "whirl", - "definition": "v.(使)旋转,急动,急走;n.旋转,—连串快速的活动" - }, - { - "word": "withdraw", - "definition": "vt.收回,撤消;vi.缩回,退出;v.撤退" - }, - { - "word": "withhold", - "definition": "vt.使停止,拒给,保留,抑制;vi.忍住" - }, - { - "word": "witness", - "definition": "n.[律]证人,目击者,证据,证明,证词;vt.目击,为...作证,证明,表明;vi.作证,成为证据" - }, - { - "word": "worthwhile", - "definition": "adj.值得做的,值得出力的" - }, - { - "word": "worthy", - "definition": "n.杰出人物,知名人士;adj.有价值的,应...的,可敬的,值得的,相称的" - }, - { - "word": "wreck", - "definition": "n.失事船(或飞机),残骸,(船,飞机的)失事;vt.破坏,拆毁" - }, - { - "word": "wrench", - "definition": "n.扳钳,扳手,猛扭,痛苦,扭伤,歪曲;vt.猛扭,使扭伤,曲解,抢,折磨;vi.猛扭,绞痛" - }, - { - "word": "wretched", - "definition": "adj.可怜的,悲惨的,肮脏的,恶劣的" - }, - { - "word": "wrinkle", - "definition": "n.皱纹;v.使皱" - }, - { - "word": "yacht", - "definition": "n.游艇,快艇,轻舟;vi.驾游艇,乘游艇" - }, - { - "word": "yell", - "definition": "vi.大叫,忍不住笑,呼喊;vt.叫着说;n.叫声,喊声" - }, - { - "word": "yield", - "definition": "v.出产,生长,生产;vi.(~to)屈服,屈从;n.产量,收益" - }, - { - "word": "yoke", - "definition": "n.轭,轭状物,套,束缚,支配;v.把...套上轭,结合,连接" - }, - { - "word": "zinc", - "definition": "n.锌;vt.涂锌于" - } -] \ No newline at end of file diff --git a/app/src/main/res/values/arrays.xml b/app/src/main/res/values/arrays.xml index 2f20bd6..0d2c4cc 100644 --- a/app/src/main/res/values/arrays.xml +++ b/app/src/main/res/values/arrays.xml @@ -1,8 +1,4 @@ - - @raw/sixlevel - @raw/sixlevel - - + \ No newline at end of file diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml index 8e24bdf..46d5308 100644 --- a/app/src/main/res/values/styles.xml +++ b/app/src/main/res/values/styles.xml @@ -10,6 +10,9 @@ + + \ No newline at end of file