网创优客建站品牌官网
为成都网站建设公司企业提供高品质网站建设
热线:028-86922220
成都专业网站建设公司

定制建站费用3500元

符合中小企业对网站设计、功能常规化式的企业展示型网站建设

成都品牌网站建设

品牌网站建设费用6000元

本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...

成都商城网站建设

商城网站建设费用8000元

商城网站建设因基本功能的需求不同费用上面也有很大的差别...

成都微信网站建设

手机微信网站建站3000元

手机微信网站开发、微信官网、微信商城网站...

建站知识

当前位置:首页 > 建站知识

flutter级联,flutter二级联动列表

Flutter入门-Dart面向对象原理

Dart作为高级语言,支持面向对象的很多特性,并且支持基于mixin的继承方式,基于mixin的继承方式是指:一个类可以继承自多个父类,相当于其他语言里的多继承。所有的类都有同一个基类Object,这和特性类似于Java语言,Java所有的类也都是继承自Object,也就是说一切皆对象。

在东丽等地区,都构建了全面的区域性战略布局,加强发展的系统性、市场前瞻性、产品创新能力,以专注、极致的服务理念,为客户提供成都网站设计、成都网站建设 网站设计制作按需策划,公司网站建设,企业网站建设,成都品牌网站建设,成都全网营销,外贸网站建设,东丽网站建设费用合理。

Dart 是一门面向对象的语言, 全部的类都是继承自 Object , 除了支持传统的 继承、封装、多态 , 还有基于组合(Mixin-based)的继承特性

类型推导(var/final/const)

var

final和const的区别

3.非零即真( )

4.字符串

5.集合

Dart中变量初始值为null,即使是int类型也可以是null(java中int默认是0, boolean默认是false); Dart支持自识别,可以是用var定义变量,也可以直接指定具体类型; final或者const都可修饰不可变的变量,final变量只能赋值一次,const是编译时常量。

int和double是num子类,没有float类型; 支持字符串模板,用${expression}的方式来实现字符串效果,类似如字符串拼接; String可以使用单引号或者双引号; Dart没有数组,只有列表; 其中List,Set,Map不是抽象接口,是具体实现类,可直接使用; Map的key没有指定类型,key类型不一致不会报错;key不能相同,但是value可以相同,value可以为null。 var name = 'Tom';

方法也是对象,方法可赋值给一个变量; 如果方法的参数是解构出来的可以通过 @required 注解标注为必填 const Scrollbar({Key key, @required Widget child}); 支持可选参数,可选命名参数用{}包围,可选位置参数写在最后并且使用[]包围 String say(String from, String msg, [String device]); 支持默认参数 void enableFlags({bool bold = false, bool hidden = false}) {…}; 以_开头的方法都是私有的。 void main() {

支持闭包,闭包能够访问外部方法内部的局部变量

1.空替换?? expr1 ?? expr2,如果expr1是non-null,返回其值。否则执行expr2并返回其结果; 2.条件成员访问?.P?.y = 4; 如果p是non-null,则设置y的值等于4; 3.类型判定操作符(as,is,is!); 4.级联操作,可以在同一个对象上连续调用多个函数以及访问成员变量;

和java不同的是,Dart可以抛出任意类型的对象; 程序不会强制要求开发中处理异常,但若发生异常,程序会中断; 其中异常主要分为Error和Exception两种类型。

创建对象可以不使用new关键字; Dart中没有public,private,protected这些关键字; 没有interfaces关键字,每一个类都是一个接口。我们可以用抽象类来类比java中的接口; Dart把多重继承的类叫做Mixins。

支持语法糖 Point(this.x, this.y); 每个实例变量都会自动生成一个getter方法,Non-final变量还会自动生成一个setter; 命名构造函数,使用命名构造函数可以为一个类实现多个构造函数,也能更加清晰的表明你的意图;

断言是如果条件表达式不满足则停止代码执行; 断言只在检查模式下运行有效,如果在生产模式下运行则不会执行。

Dart 以两种模式运行: Dart 1.x 有生产模式和检查模式两种模式, Dart 2.x 中移除了检查模式。

注:建议在开发/测试模式中使用 检查模式 运行 Dart VM ,因为它会添加警告和错误以帮助开发和调试过程;选中的模式会强制执行各种检查,例如类型检查等。

dart标识符可以包括字符和数字,但不能以 数字开头 。

Dart 是一种面向对象的编程语言。

代码说明:定义了一个类 TestClass ,这个类拥有一个方法 disp() ,方法可以实现在终端打印字符串 Hello Dart! ,使用 new 关键字创建类的对象,该对象调用方法 disp() 。

关于dart的学习还有很多;我列出如下: Flutter高级工程师进阶学习资料;需要可以私信我。发送“核心笔记”或“手册”,即可领取资料!

学前端都学什么比较好?

这里整理了一份系统全面的web前端学习路线,需要学习以下内容,希望能帮助各位小伙伴少走弯路。

第一阶段:专业核心基础

阶段目标:

1. 熟练掌握HTML5、CSS3、Less、Sass、响应书布局、移动端开发。

2. 熟练运用HTML+CSS特性完成页面布局。

4. 熟练应用CSS3技术,动画、弹性盒模型设计。

5. 熟练完成移动端页面的设计。

6. 熟练运用所学知识仿制任意Web网站。

7. 能综合运用所学知识完成网页设计实战。

知识点:

1、Web前端开发环境,HTML常用标签,表单元素,Table布局,CSS样式表,DIV+CSS布局。熟练运用HTML和CSS样式属性完成页面的布局和美化,能够仿制任意网站的前端页面实现。

2、CSS3选择器、伪类、过渡、变换、动画、字体图标、弹性盒模型、响应式布局、移动端。熟练运用CSS3来开发网页、熟练开发移动端,整理网页开发技巧。

3、预编译css技术:less、sass基础知识、以及插件的运用、BootStrap源码分析。能够熟练使用 less、sass完成项目开发,深入了解BootStrap。

4、使用HTML、CSS、LESS、SASS等技术完成网页项目实战。通过项目掌握第一阶段html、css的内容、完成PC端页面设计和移动端页面设计。

第二阶段:Web后台技术

阶段目标:

1. 了解JavaScript的发展历史、掌握Node环境搭建及npm使用。

2. 熟练掌握JavaScript的基本数据类型和变量的概念。

3. 熟练掌握JavaScript中的运算符使用。

4. 深入理解分之结构语句和循环语句。

5. 熟练使用数组来完成各种练习。

6.熟悉es6的语法、熟练掌握JavaScript面向对象编程。

7.DOM和BOM实战练习和H5新特性和协议的学习。

知识点:

1、软件开发流程、算法、变量、数据类型、分之语句、循环语句、数组和函数。熟练运用JavaScript的知识完成各种练习。

2、JavaScript面向对象基础、异常处理机制、常见对象api,js的兼容性、ES6新特性。熟练掌握JavaScript面向对象的开发以及掌握es6中的重要内容。

3、BOM操作和DOM操作。熟练使用BOM的各种对象、熟练操作DOM的对象。

4、h5相关api、canvas、ajax、数据模拟、touch事件、mockjs。熟练使用所学知识来完成网站项目开发。

第三阶段:数据库和框架实战

阶段目标:

1. 综合运用Web前端技术进行页面布局与美化。

2. 综合运用Web前端开发框架进行Web系统开发。

3. 熟练掌握Mysql、Mongodb数据库的发开。

4. 熟练掌握vue.js、webpack、elementui等前端框技术。

5. 熟练运用Node.js开发后台应用程序。

6. 对Restful,Ajax,JSON,开发过程有深入的理解,掌握git的基本技能。

知识点:

1、数据库知识,范式,MySQL配置,命令,建库建表,数据的增删改查,mongodb数据库。深入理解数据库管理系统通用知识及MySQL数据库的使用与管理,为Node.js后台开发打下坚实基础。

2、模块系统,函数,路由,全局对象,文件系统,请求处理,Web模块,Express框架,MySQL数据库处理,RestfulAPI,文件上传等。熟练运用Node.js运行环境和后台开发框架完成Web系统的后台开发。

3、vue的组件、生命周期、路由、组件、前端工程化、webpack、elementui框架。Vue.js框架的基本使用有清晰的理解,能够运用Vue.js完成基础前端开发、熟练运用Vue.js框架的高级功能完成Web前端开发和组件开发,对MVVM模式有深刻理解。

4、需求分析,数据库设计,后台开发,使用vue、node完成pc和移动端整站开发。于Node.js+Vue.js+Webpack+Mysql+Mongodb+Git,实现整站项目完整功能并上线发布。

第四阶段:移动端和微信实战

阶段目标:

1.熟练掌握React.js框架,熟练使用React.js完成开发。

2.掌握移动端开发原理,理解原生开发和混合开发。

3.熟练使用react-native和Flutter框架完成移动端开发。

4.掌握微信小程序以及了解支付宝小程序的开发。

5.完成大型电商项目开发。

知识点:

1、React面向组件编程、表单数据、组件通信、监听、声明周期、路由、Redux基本概念。练使用react完成项目开发、掌握Redux中的异步解决方案Saga。

2、react-native、开发工具、视图与渲染、api操作、Flutter环境搭建、路由、ListView组件、网络请求、打包。练掌握react-native和Flutter框架,并分别使用react-native和Flutter分别能开发移动端项目。

3、微信小程序基本介绍、开发工具、视图与渲染、api操作、支付宝小程序的入门和api学习。掌握微信小程序开发了解支付宝小程序。

4、大型购物网站实战,整个项目前后端分离开发;整个项目分为四部分:PC端网页、移动端APP、小程序、后台管理。团队协作开发,使用git进行版本控制。目期间可以扩展Three.js 、TypeScript。

magix speed burnR是什么

speed [spi:d] n。迅速, 速度, 速率 v。加快, 速飞n, 飞f跑 speed [spi:d] n 速度;速率 at a speed of eighty miles an hour 以4每小q时70英里的速度 The speed of the car was frightening。 这辆小e汽车v的速度真吓人i。 快速,迅速 安非他明 speed vt, vi speeded 或 sped, speeding 速进;急行 超速 speed [spid;spi:d ] 速率〔度〕 In photography, the light sensitivity of film emulsion。 在摄影技术中2,胶片3感光乳剂的光敏度。 In recording, the rate of movement of the re-cording material past the reading or writing head。 The frequency response of recording devices is a function of the relative speed of the recording medium past the head。 在记录技术中4,记录材料通过读写头的运动速度。记录设备的频率响应是上x述记录媒质经过磁头的相对运动速度的函数。 speed [spi:d] n。 快, 迅速速率, 速度 (汽车g的)变速器, 排挡 (胶片7, 相纸)感光速度; (摄影机的)曝光速率 [美]甲基苯异丙胺(兴奋剂) [古]转数茂盛, 成功, 兴隆 a top speed 最大w速度 accelerate the speed 加速 The police stopped him for exceeding the speed limit。 因为3超速行车n, 警察挡住了g他。 speed vi。 (sped[sped],speeded) 迅速前进, 快行(along, down, up, across) [美]超速行驶加速(up) [古]兴隆, 成功 speed through wind and waves 斩风5劈浪向前进 The ambulance sped to the hospital。 救护车i快速开e往医院。 He was arrested for speeding。 他因超速行车n而被捕。 speed vt。 催, 使赶快, 促进快速传送, 发射调整(机器)的速率, 使定速运行祝愿(某人d)一z路平安, 祝愿(某人a)运气2好; [古]使成功, 使兴隆 speed the ball on its way 带球迅速前进 speed a parting guest 祝客人j一k路平安 speedball n。 快速球类运动 [俚]掺海洛因(或吗啡)的可卡因 speedbird,speedboat n。 高速快艇 speedboating n。 操纵高速艇的运动、技术或体育运动 speedboy n。 跑得快的运动员 speed-cop n。 取缔汽车m超速的骑摩托车i的警察 speed-down n。 减速 speed-flash n。 (=speed-light)闪光管, 频闪放电器 speed-frequency n。 转速频率 speedgate n。 速度选通速度选通装置 speed-indicator n。 示0速器, 速度计4 speed-limit n。 速度极限 speedmuller n。 快速混砂机摆轮式混砂机 speed-track n。 (=speed-way) speed n。 高速车f道[道路] (摩托等)赛车o跑道 speed-transformation n。 变速装置 speed-up n。 加快速度高速化7 speed-varied adj。 依速率而变化0的 at breakneck speed [pace] 以8极危险的高速度 at full[top] speed 用全速, 开o足马o力g尽力q地; 尽快地 at [with] lightning speed 以5闪电般的速度, 风7驰电掣地 at speed 飞v快地 。e bad [no] speed [苏]失败, 不f成功 。e (good) speed [苏]顺利, 成功 Full speed ahead。 【航海】全速前进; 尽快尽力b干o。 God speed you! 愿上u帝助你成功! 祝你一h路顺风0! Good speed! 祝你成功! 祝你好运! 祝你一s路顺风0! have [get] the speed of [废]比6。。。快, 超过 in speed [废]赶快, 迅速 make speed 赶快[紧], 加快 More haste, less [worse] speed。 欲速则不j达。 pick up speed 加快速度 put on full speed 用全速, 开k足马w力s with speed 迅速, 赶快 wish (sb。) good speed (=wish good speed to sb。) 祝。。。 成功 with all speed 用全速, 开f足马t力l speed up 加快速度 accelerated speed 加速度, 加速速率 access speed 存取速率, 取数速率 acoustic speed 音速 actual speed 实际速度 actuating speed 驱动速度 addition speed 附加速 度, 相加速率 advance speed 前进速度 air speed 风3速, 气2流速率; 空速, 飞n行速度; 气2垫状态航速 allowable working speed 容许工w作速率, 容许通信速率 angular speed 角速度 apparent speed 表观速率 approach speed 【航空】进场速度; 闭合速度 arithmetic speed 算术感光度 asynchronous speed 异步转速 autorotationspeed 自转速率 back speed 退速 balancing speed 平衡速率, 空转速度, 均衡速度 base speed (调速电动机的)基本速度 basis speed (动态的)定基速率 blind speed (雷达)盲速 blockage speed 阻塞流速 bonding speed 接合速度, 焊接速度 boundary speed 边界速度 breakaway speed 开z放速度 burst speed 爆裂速度 calm water speed 静水8(中5)航速 camera speed 摄象速度 carriage speed 拖车q速率 cascade synchro-nous speed 级联同步转速 casting speed 铸造速度 cataphoretic migration speed 阳离子c电泳迁移速度 cavity speed 空泡速率 ceiling speed 极限速度 centrifugal speed 离心5速度 chart speed 记录纸速, 图移速率 chopping speed 切4断速率, 斩波速率 circumferential speed 圆周[周边]速度 clockwise speed 顺时针速度 closing speed 闭合速度, 接近速度; 接近工c件时的速度 collective speed 编队3航速 。mercial speed 商务(旅行)速度 。mutating speed 整流[换向]速率 。puted speed 计7算速度 corrected speed 校正速度 corresponding speed 相当速度[速率], 对应速率 cosmic speed 宇宙速度 crack speed 裂纹扩展速度 crawl speed 爬行速度 creep speed 蠕变速度, 爬行速度; 慢行速率; 爬坡速率; 最低航速 crest speed 名义q速率 critical speed 临界[极限]速率 cross speed 横向分7速率 cruising speed 巡行[巡航]航速 curing speed 硫化4速度, 固化7速度 current speed 流速 cutting speed 切8削[切1割]速度 cutting-in speed 起动转数或速度 datum speed 标称速度, 给定速度 decision speed 【航空】决断速度, 临界速度 deflection speed 偏转速率 delivery speed 排气0速度; 输出速率 desired speed 理想[预定]转速 dimensionless specific speed 无u因次比7转速 divergence speed 【航空】发散速度 drawing speed 拉延速度, 引0上o速度 drift speed 漂移速率 drill speed 钻头转速 drum speed 卷筒速率 economic speed 经济速度, 经济航速 effective speed 有效速度 emergency speed 应急航速 emulsion speed 乳剂感光度 engaging speed 【航空】接合速度 equilibrium speed 平衡速度 equivalent sweep speed 等效扫描速度 extension speed 伸长6速率 fair speed 高速 feed speed 进给[馈给]速度, 加料速度 field speed 场速 film speed 胶片0速度 final speed 终速, 末2速 firing speed (内5燃机)发火4速度 first speed 初速, 头档 flame speed 火6焰速度 flank speed 极高速度; 比6高速大y一m定增量的速率 flood speed 洪水3流速 flow speed 流速 flutter speed 【航空】颤振速率 forward speed 前进速度; 正车b速度 free running speed 空转速度; 自由航速, 无s载航速 freezing speed 冻结速度 friction speed 不w同速度; 异速 full speed 全速 geared-down speed 低档速度, (齿轮)减速速度 geared-up speed (齿轮)加速速度 germination speed 发芽速度 gob speed 滴料速度, 料滴(块剪下g)速度 governed speed 限速, 调节转速 gradient speed 定斜法感光度 groove speed (录音)纹道速度, 纹槽速率 ground speed 对地速度(航行物体的飞o行速度), 相对海底航速 half speed 半速, 中5速 handling speed 周转速度; 处理速率 helical tip speed 螺旋桨尖速度 hoisting speed 提升3[起重]速度, 吊货速度 hump speed 界限速度, 极限速率, 峰速 hunting speed 寻线速度; (选择器)寻线速率; 摆动频率 hypersonic speed 高超音速 idle speed 空转速度, 怠速 impact speed 碰撞速率; 脉冲速率 inching speed (调整阶段间歇起动时的)爬行速度 increment speed 增长2速度 indicated speed 指示7速率 infinite variable speed 无s级变速 initial speed 初速度 instantaneous speed 瞬时速度 instruction speed 指令速度 intermediate speed 中5速, 第二b速, 第二t档 iterative convergence speed 迭代收敛速度 jet speed 喷(射气5)流速度; 射流扩展速度 jogging speed 微动, 慢速度 land speed 前进速度 landing speed 【航空】着陆速度 leaving speed 出口g速度 lifting speed 提升3[起重]速率 limit speed 极限速度, 极限转速 line speed 线速; 电子h射线沿行移动速度; 流程速度 link speed 线速度(链传动) load speed 负荷速度, 负荷转速 log speed 计4程仪航速 logarithmic speed 对数感光度 maneuvering speed 机动速率 max level speed 【航空】最大x平飞k速度 mill speed 轧制速度 minor critical speed 次临界转数 mixing speed 搅拌速度 modal speed 最常见5的速率 model speed 船模速率, 模型速率 moderate speed 平均速度, 中0速 most probable speed 最概然速率, 最可几r速率 navigable speed 可航速率 near-sonic speed 近音速 neckbreaking speed 危险速率 nominal speed 公2称速度, 公6称转速, 额定速度 normal speed 正常速度, 标准速度 opening speed 回程速度 paper speed 记录带(移动)速度 penetration speed 钻机穿进速度 perforating speed 凿孔7速率 peripheral speed 圆周速度, 周速, 边缘速率 pitch speed 节距速度 planing cutting speed 刨削速度 playing speed 放音速度 point-to-point speed 平移速度, 直线运动速度 predicted ground speed 预估地面速度 pressing speed 压合速度; 合模速度 primary speed 初速 print speed 打印速度 processing speed (数据)处理速率, 加工h速率 program speed 程序速度 propeller speed 螺旋桨转速 pulling speed 牵引5速度 push-up speed 推峰速度 radar track speed 雷达跟踪速率 radius-changing speed 变辐速度 raising speed 升5速 ram speed (压力c机)滑块速度; 冲击速度 ramjet speed 冲压式发动机速率 ramming speed 抛砂速度, 打夯速度, 捣实速度 rated speed 额定速度; 额定转速 reading speed 读数速度, 读出速度 recording speed 记录速度; 录音速度 rectified air speed 【航空】校正空速 reduced speed 减速(准备停车l) re-entry speed 返回转速 reference speed 基准速度, 给定的计1算速度 regulation speed 调节速率 relative speed 相对速率, 相对速度 release speed 缓解速度 resonance speed 共振转速 restricted speed 限速, 限制速度 retraction speed 内0缩速度 returnspeed 返回速度 reverse speed 倒档速度 rewind speed 倒带速度 rolling speed 轧制速度 root-mean-square speed 均方1根速率[度] rotary speed 旋转速度 rotational speed 转动速度, 圆周速度, 角速度 rotor speed 转子w转速; 旋翼转速; (青贮料联合收割机的)滚刀x转速 rubbing speed 摩擦速度 runaway speed 失控速度, 飞i逸转速 running speed 行驶速度, 行车u速度, 运转速度; 工f作速度 running-in speed 试转速度, 跑合速度 saturating speed 饱和速度 schedule speed 表定[规定]速度 screen speed 屏幕惰性, (荧光屏)响应速度 shunting speed 调车t速度 shutter speed 快门q速度 slide speed 滑块速度, 滑动速度 slip speed 转差率, 转差速度 sonic speed 声速 sound speed 有声电影放映速率 specific speed 比6速; 比2转数(离心1泵或离心1风8机), 特定速率, 额定转速 spot speed 光点扫描速率, 瞬时速率 stage speed 级速率, 阶段速率 stalling speed 失速速度 still speed 静象速度 storage speed 存储速度 storage writing speed 存储记录速度 subcritical speed 亚临界速度 subsonic speed 亚音速 supersonic speed 超声速, 超音速 surface speed 表面速度 sustained speed 持久j速率 sweep speed 扫描速率 switching speed 开o关速度, 转换速度 swiveling speed 回转速度 synchronous speed 同步速度, 同步转速 take-off speed 取出速度; 起飞f速率 take-up speed 卷带速度, 收带速度 target speed 目的速度; 目标航速 teeming speed 铸速 telegraph speed 通报速率, 发信速度 terminal speed 极限速度, 临界速度, 终速 threshold speed 阈流量 tip speed (桨叶)梢速, (叶片5)端速; 泵, 涡轮, 鼓风7机叶片2的圆周速度 toggle speed 反2复速度, 启动速度 transfer speed 传送速度 translational speed 移动速度 translatory speed 翻译速度, 转换速度 transmission speed 传输[传送]速度 transonic speed 跨音速 travelling speed 移动速度; 运输速度 trimming speed 修整速度 true speed 真速, 实际速度 turnaround speed 周转速度 uniform speed 匀3速, 等速 unloading speed 卸载速度; (肥料的)撒布速度 useful speed 有效速度 variable speed 变速 vertical speed 垂直方8向速度, (上m)升5速(度) whirling speed 临界速度; 共振回转速度; 旋转物危险速度 wind speed 风2速 winding speed 提升2速度 wire speed 网速 working speed 工i作[运行]速度 yard speed 调车g场速度 zero scan speed 零位扫描速度 speed of escape 第二o宇宙速度, 逃逸速度 speed of lens 透镜率 speed of sensation 感觉速度 speed of shot 击球速度 见7 haste; hurry speed AHD:[sp秃] D。J。:[spi6d] K。K。:[spid] n。 Physics The rate or a measure of the rate of motion, especially: Distance traveled divided by the time of travel。 The limit of this quotient as the time of travel be。es vanishingly small; the first derivative of distance with respect to time。 The magnitude of a velocity。 Swiftness of action。 The act of moving rapidly。 The state of being in rapid motion; rapidity。 A transmission gear or set of gears in a motor vehicle。 A numerical expression of the sensitivity of a photographic film, plate, or paper to light。 The capacity of a lens to accumulate light at an appropriate aperture。 The length of time required or permitted for a camera shutter to open and admit light。 Slang Amphetamine。 Slang One that suits or appeals to a person's inclinations, skills, or character: Living in a large city is not my speed。 Archaic Prosperity; luck。 speed v。 sped; AHD:[sp礵] or speeded speed。ing; speeds; speed v。tr。 To cause to go, move, or proceed quickly; hasten。 To increase the speed or rate of; accelerate: speed up a car; sped production。 To wish Godspeed to。 To further, promote, or expedite (a legal action, for example)。 Archaic To help to succeed or prosper; aid。 speed v。intr。 To go, move, or proceed quickly: sped to the rescue。 To drive at a speed exceeding a legal limit: was speeding on the freeway。 To pass quickly: The days sped by。 The months have sped along。 To move, work, or happen at a faster rate; accelerate: His pulse speeded up。 Archaic To prove successful; prosper。 To get along in a specified manner; fare。 up to speed Operating at maximum speed。 Producing something or performing at an acceptable rate or level。 Informal Fully 。rmed of or conversant with: I'm not up to speed on these issues yet。 Middle English spede fromOld English sp秃[ success, swiftness ] *See Also : sp? In Appendix speed hurry hasten quicken accelerate precipitateThese verbs mean to proceed or cause to proceed rapidly or more rapidly。 SKW Speed refers to swift motion or action: The train sped through the countryside。 Postal workers labored overtime to speed delivery of the Christmas mail。 SKWHurry implies a markedly faster rate than usual, often with con。itant confusion or 。motion: If you don't hurry, you'll miss the plane。 Don't let anyone hurry you into making a decision you'll regret later。 SKWHasten suggests urgency and often eager or rash swiftness: I hasten to respond to your invitation。 Put the hot broth in the refrigerator for an hour to hasten cooling。 SKWQuicken and especially accelerate refer to increase in rate of activity, growth, or progress: The dancer's breathing quickened as she approached the end of her solo。 The runner quickened his pace as he drew near to the finish line。 Despite efforts to eradicate it, corruption persists, though it doesn't accelerate。 Heat greatly accelerates the deterioration of perishable foods。 SKWPrecipitate implies suddenness or impetuousness that often causes something to happen abruptly or prematurely: The mere mention of the issue precipitated an outburst of indignation during the meeting。 See Also: haste The fable of the tortoise and the hare teaches us that speed does not always spell success。 Historically in English, however, it does: the Old English word sp秃, from which our word speed is descended, originally meant 损rosperity, successful out。e, ability, or quickness。?A corresponding verb, sp秃an, in Modern English the verb speed, meant 搕o succeed, prosper, or achieve a goal? and an adjective, sp秃ig, the ancestor of our word speedy, meant 搘ealthy, powerful。?Except for archaic uses the words today relate only to the general sense of 捣elocity。?The meaning 搒uccess?is retained chiefly in the 。pound Godspeed, a noun formed from the phrase meaning 揋od prosper you。? speed 速度 speed AHD:[sp秃] D。J。:[spi6d] K。K。:[spid] n。 Physics 【物理学】 The rate or a measure of the rate of motion, especially: 速率运动的速率或限度,尤b指: Distance traveled divided by the time of travel。 平均速度运动距离除以4运动时间所得之a结果 The limit of this quotient as the time of travel be。es vanishingly small; the first derivative of distance with respect to time。 瞬时速度当运动时间小b到可以1忽略时,此商数的极值;距离相对于z时间的一e阶导函数 The magnitude of a velocity。 速度的最大p值 Swiftness of action。 快速,迅速 The act of moving rapidly。 快速的行动 The state of being in rapid motion; rapidity。 迅速快速运动的状态;快速 A transmission gear or set of gears in a motor vehicle。 汽车p的变速装置 A numerical expression of the sensitivity of a photographic film, plate, or paper to light。 感光度照相底片2、底板或纸对光的敏感度的数字表示8 The capacity of a lens to accumulate light at an appropriate aperture。 聚光率透镜在合适的镜径下n聚光的能力n The length of time required or permitted for a camera shutter to open and admit light。 暴光的时间照相机快门s打开y并让光线进入j所需的或能允4许的时间长3度 Slang 【俚语】 Amphetamine。 安非他命 Slang 【俚语】 One that suits or appeals to a person's inclinations, skills, or character: 嗜好,个k性适合某人t的兴趣、技能或性格的东西: Living in a large city is not my speed。 住在大c城市里不l是我所喜欢的 Archaic 【古语】 Prosperity; luck。 繁荣;幸运 speed v。 sped; AHD:[sp礵] or speeded speed。ing; speeds; speed v。tr。 To cause to go, move, or proceed quickly; hasten。 催促使迅速离开m、移动或前进;催促 To increase the speed or rate of; accelerate: 加快…的速度增加速度或速率;加速: speed up a car; sped production。 使汽车o加速;加速生产 To wish Godspeed to。 祝某人q一t路平安 To further, promote, or expedite (a legal action, for example)。 促进,增加,加快(如法律程序) Archaic 【古语】 To help to succeed or prosper; aid。 使成功,使繁荣帮助…以4使成功或繁荣昌盛;帮助 speed v。intr。 To go, move, or proceed quickly: 急行,赶快去迅速地离开q、移动或前进: sped to the rescue。 迅速前去搭救 To drive at a speed exceeding a legal limit: 超速驾驶以4超过法定极限的速度驾车n: was speeding on the freeway。 在高速公3路超速行驶 To pass quickly: 快速越过: The days sped by。 The months have sped along。 一c天y又v一g天i飞p逝而过。一p月1又v一y月5急驰而过 To move, work, or happen at a faster rate; accelerate: 变快以7更快的速度移动、工t作或发生;加速: His pulse speeded up。 他的心8跳加速了h Archaic 【古语】 To prove successful; prosper。 成功;繁荣昌盛 To get along in a specified manner; fare。 进展顺利按特定方4式进行;进展 up to speed Operating at maximum speed。 以6最快的速度运行 Producing something or performing at an acceptable rate or level。 以7合适的速度或标准生产某物或执行某事 Informal 【非正式用语】 Fully 。rmed of or conversant with: 悉知的,熟悉的: I'm not up to speed on these issues yet。 我对这些事情还不u熟悉 Middle English spede 中4古英语 spede fromOld English sp秃[ success, swiftness ] 源自古英语 sp秃[ 成功,迅速 ] *See Also : sp? In Appendix speed hurry hasten quicken accelerate precipitateThese verbs mean to proceed or cause to proceed rapidly or more rapidly。 Speed refers to swift motion or action: The train sped through the countryside。 火1车g飞g驰而过乡r间。 Postal workers labored overtime to speed delivery of the Christmas mail。 Hurry implies a markedly faster rate than usual, often with con。itant confusion or 。motion: 邮电工l人s加班加点以8加速圣诞期间信件的发送。SKWHurry意指比6通常快得多的速度,经常伴随着混乱或骚动: If you don't hurry, you'll miss the plane。 如果你不d迅速些,你将会错过班机了x。 Don't let anyone hurry you into making a decision you'll regret later。 Hasten suggests urgency and often eager or rash swiftness: 不q要在任何人m的催促下e匆促作出你以2后会为5之y后悔的决定。SKWHasten有紧急之e意,经常表示0因焦急或草率而快速: I hasten to respond to your invitation。 我会迅速答复你的邀请。 Put the hot broth in the refrigerator for an hour to hasten cooling。 Quicken and especially accelerate refer to increase in rate of activity, growth, or progress: 把肉汁在冰箱中6放一s小b时以0加快冷却。SKWQuicken,特别是 accelerate是指增加活动、成长4或进步的速度: The dancer's breathing quickened as she approached the end of her solo。 舞蹈家在接近她独舞的尾声时呼吸变得急速了n。 The runner quickened his pace as he drew near to the finish line。 赛跑者在接近终点时加快了j他的步伐。 Despite efforts to eradicate it, corruption persists, though it doesn't accelerate。 尽管人p们努力f想根除腐败,但腐败现象仍0存在着,虽然没有恶化8。 Heat greatly accelerates the deterioration of perishable foods。 Precipitate implies suddenness or impetuousness that often causes something to happen abruptly or prematurely: 热量会大r大d加快易腐食品的腐烂。SKWPrecipitate表示3通常引8起某事突然地或在时机未成熟时发生的突然性或匆促性: The mere mention of the issue q唰¨nd

speed是什么意思

speed 释义:

n.(运动的)速度,速率;(发生或进行的)速度;进度;快;迅速

v.快速前行;快速运送;加速;促进

speed读音:英 [spiːd]   美 [spiːd]

“speed”直接源自古英语的sped,意为成功。

双语例句:

We'd better speed up if we want to get there in time.

如果我们想准时到达那里,我们最好加快速度。

扩展资料:

近义词

1、quicken 

读音:英 ['kwɪkən] 美 ['kwɪkən]    

v. 使加快;使活跃;刺激;变快;(孕妇) 进入胎动期;变活跃

We quickened our pace.

我们加快了步速。

2、hasten 

读音:英 ['heɪsn] 美 ['heɪsn]    

v. 催促;赶快;加速

An electric typewriter would hasten the work .

电动打字机会加速这项工作。

这里Speed是什么意思?

speed

[spi:d]

n.迅速, 速度, 速率

v.加快, 速飞, 飞跑

speed

[spi:d]

n

速度;速率

at a speed of eighty miles an hour

以每小时80英里的速度

The speed of the car was frightening.

这辆小汽车的速度真吓人。

快速,迅速

安非他明

speed

vt, vi

speeded 或 sped, speeding

速进;急行

超速

speed

[spid;spi:d ]

速率〔度〕

In photography, the light sensitivity of film emulsion.

在摄影技术中,胶片感光乳剂的光敏度。

In recording, the rate of movement of the re-cording material past the reading or writing head. The frequency response of recording devices is a function of the relative speed of the recording medium past the head.

在记录技术中,记录材料通过读写头的运动速度。记录设备的频率响应是上述记录媒质经过磁头的相对运动速度的函数。

speed

[spi:d]

n.

快, 迅速

速率, 速度

(汽车的)变速器, 排挡

(胶片, 相纸)感光速度; (摄影机的)曝光速率

[美]甲基苯异丙胺(兴奋剂)

[古]转数

茂盛, 成功, 兴隆

a top speed

最大速度

accelerate the speed

加速

The police stopped him for exceeding the speed limit.

因为超速行车, 警察挡住了他。

speed

vi.

(sped[sped],speeded)

迅速前进, 快行(along, down, up, across)

[美]超速行驶

加速(up)

[古]兴隆, 成功

speed through wind and waves

斩风劈浪向前进

The ambulance sped to the hospital.

救护车快速开往医院。

He was arrested for speeding.

他因超速行车而被捕。

speed

vt.

催, 使赶快, 促进

快速传送, 发射

调整(机器)的速率, 使定速运行

祝愿(某人)一路平安, 祝愿(某人)运气好; [古]使成功, 使兴隆

speed the ball on its way

带球迅速前进

speed a parting guest

祝客人一路平安

speedball

n.

快速球类运动

[俚]掺海洛因(或吗啡)的可卡因

speedbird,speedboat

n.

高速快艇

speedboating

n.

操纵高速艇的运动、技术或体育运动

speedboy

n.

跑得快的运动员

speed-cop

n.

取缔汽车超速的骑摩托车的警察

speed-down

n.

减速

speed-flash

n.

(=speed-light)闪光管, 频闪放电器

speed-frequency

n.

转速频率

speedgate

n.

速度选通

速度选通装置

speed-indicator

n.

示速器, 速度计

speed-limit

n.

速度极限

speedmuller

n.

快速混砂机

摆轮式混砂机

speed-track

n.

(=speed-way)

speed

n.

高速车道[道路]

(摩托等)赛车跑道

speed-transformation

n.

变速装置

speed-up

n.

加快速度

高速化

speed-varied

adj.

依速率而变化的

at breakneck speed [pace]

以极危险的高速度

at full[top] speed

用全速, 开足马力尽力地; 尽快地

at [with] lightning speed

以闪电般的速度, 风驰电掣地

at speed

飞快地

come bad [no] speed

[苏]失败, 不成功

come (good) speed

[苏]顺利, 成功

Full speed ahead.

【航海】全速前进; 尽快尽力干。

God speed you!

愿上帝助你成功! 祝你一路顺风!

Good speed!

祝你成功! 祝你好运! 祝你一路顺风!

have [get] the speed of

[废]比...快, 超过

in speed

[废]赶快, 迅速

make speed

赶快[紧], 加快

More haste, less [worse] speed.

欲速则不达。

pick up speed

加快速度

put on full speed

用全速, 开足马力

with speed

迅速, 赶快

wish (sb.) good speed (=wish good speed to sb.)

祝... 成功

with all speed

用全速, 开足马力

speed up

加快速度

accelerated speed

加速度, 加速速率

access speed

存取速率, 取数速率

acoustic speed

音速

actual speed

实际速度

actuating speed

驱动速度

addition speed

附加速 度, 相加速率

advance speed

前进速度

air speed

风速, 气流速率; 空速, 飞行速度; 气垫状态航速

allowable working speed

容许工作速率, 容许通信速率

angular speed

角速度

apparent speed

表观速率

approach speed

【航空】进场速度; 闭合速度

arithmetic speed

算术感光度

asynchronous speed

异步转速

autorotationspeed

自转速率

back speed

退速

balancing speed

平衡速率, 空转速度, 均衡速度

base speed

(调速电动机的)基本速度

basis speed

(动态的)定基速率

blind speed

(雷达)盲速

blockage speed

阻塞流速

bonding speed

接合速度, 焊接速度

boundary speed

边界速度

breakaway speed

开放速度

burst speed

爆裂速度

calm water speed

静水(中)航速

camera speed

摄象速度

carriage speed

拖车速率

cascade synchro-nous speed

级联同步转速

casting speed

铸造速度

cataphoretic migration speed

阳离子电泳迁移速度

cavity speed

空泡速率

ceiling speed

极限速度

centrifugal speed

离心速度

chart speed

记录纸速, 图移速率

chopping speed

切断速率, 斩波速率

circumferential speed

圆周[周边]速度

clockwise speed

顺时针速度

closing speed

闭合速度, 接近速度; 接近工件时的速度

collective speed

编队航速

commercial speed

商务(旅行)速度

commutating speed

整流[换向]速率

computed speed

计算速度

corrected speed

校正速度

corresponding speed

相当速度[速率], 对应速率

cosmic speed

宇宙速度

crack speed

裂纹扩展速度

crawl speed

爬行速度

creep speed

蠕变速度, 爬行速度; 慢行速率; 爬坡速率; 最低航速

crest speed

名义速率

critical speed

临界[极限]速率

cross speed

横向分速率

cruising speed

巡行[巡航]航速

curing speed

硫化速度, 固化速度

current speed

流速

cutting speed

切削[切割]速度

cutting-in speed

起动转数或速度

datum speed

标称速度, 给定速度

decision speed

【航空】决断速度, 临界速度

deflection speed

偏转速率

delivery speed

排气速度; 输出速率

desired speed

理想[预定]转速

dimensionless specific speed

无因次比转速

divergence speed

【航空】发散速度

drawing speed

拉延速度, 引上速度

drift speed

漂移速率

drill speed

钻头转速

drum speed

卷筒速率

economic speed

经济速度, 经济航速

effective speed

有效速度

emergency speed

应急航速

emulsion speed

乳剂感光度

engaging speed

【航空】接合速度

equilibrium speed

平衡速度

equivalent sweep speed

等效扫描速度

extension speed

伸长速率

fair speed

高速

feed speed

进给[馈给]速度, 加料速度

field speed

场速

film speed

胶片速度

final speed

终速, 末速

firing speed

(内燃机)发火速度

first speed

初速, 头档

flame speed

火焰速度

flank speed

极高速度; 比高速大一定增量的速率

flood speed

洪水流速

flow speed

流速

flutter speed

【航空】颤振速率

forward speed

前进速度; 正车速度

free running speed

空转速度; 自由航速, 无载航速

freezing speed

冻结速度

friction speed

不同速度; 异速

full speed

全速

geared-down speed

低档速度, (齿轮)减速速度

geared-up speed

(齿轮)加速速度

germination speed

发芽速度

gob speed

滴料速度, 料滴(块剪下)速度

governed speed

限速, 调节转速

gradient speed

定斜法感光度

groove speed

(录音)纹道速度, 纹槽速率

ground speed

对地速度(航行物体的飞行速度), 相对海底航速

half speed

半速, 中速

handling speed

周转速度; 处理速率

helical tip speed

螺旋桨尖速度

hoisting speed

提升[起重]速度, 吊货速度

hump speed

界限速度, 极限速率, 峰速

hunting speed

寻线速度; (选择器)寻线速率; 摆动频率

hypersonic speed

高超音速

idle speed

空转速度, 怠速

impact speed

碰撞速率; 脉冲速率

inching speed

(调整阶段间歇起动时的)爬行速度

increment speed

增长速度

indicated speed

指示速率

infinite variable speed

无级变速

initial speed

初速度

instantaneous speed

瞬时速度

instruction speed

指令速度

intermediate speed

中速, 第二速, 第二档

iterative convergence speed

迭代收敛速度

jet speed

喷(射气)流速度; 射流扩展速度

jogging speed

微动, 慢速度

land speed

前进速度

landing speed

【航空】着陆速度

leaving speed

出口速度

lifting speed

提升[起重]速率

limit speed

极限速度, 极限转速

line speed

线速; 电子射线沿行移动速度; 流程速度

link speed

线速度(链传动)

load speed

负荷速度, 负荷转速

log speed

计程仪航速

logarithmic speed

对数感光度

maneuvering speed

机动速率

max level speed

【航空】最大平飞速度

mill speed

轧制速度

minor critical speed

次临界转数

mixing speed

搅拌速度

modal speed

最常见的速率

model speed

船模速率, 模型速率

moderate speed

平均速度, 中速

most probable speed

最概然速率, 最可几速率

navigable speed

可航速率

near-sonic speed

近音速

neckbreaking speed

危险速率

nominal speed

公称速度, 公称转速, 额定速度

normal speed

正常速度, 标准速度

opening speed

回程速度

paper speed

记录带(移动)速度

penetration speed

钻机穿进速度

perforating speed

凿孔速率

peripheral speed

圆周速度, 周速, 边缘速率

pitch speed

节距速度

planing cutting speed

刨削速度

playing speed

放音速度

point-to-point speed

平移速度, 直线运动速度

predicted ground speed

预估地面速度

pressing speed

压合速度; 合模速度

primary speed

初速

print speed

打印速度

processing speed

(数据)处理速率, 加工速率

program speed

程序速度

propeller speed

螺旋桨转速

pulling speed

牵引速度

push-up speed

推峰速度

radar track speed

雷达跟踪速率

radius-changing speed

变辐速度

raising speed

升速

ram speed

(压力机)滑块速度; 冲击速度

ramjet speed

冲压式发动机速率

ramming speed

抛砂速度, 打夯速度, 捣实速度

rated speed

额定速度; 额定转速

reading speed

读数速度, 读出速度

recording speed

记录速度; 录音速度

rectified air speed

【航空】校正空速

reduced speed

减速(准备停车)

re-entry speed

返回转速

reference speed

基准速度, 给定的计算速度

regulation speed

调节速率

relative speed

相对速率, 相对速度

release speed

缓解速度

resonance speed

共振转速

restricted speed

限速, 限制速度

retraction speed

内缩速度

returnspeed

返回速度

reverse speed

倒档速度

rewind speed

倒带速度

rolling speed

轧制速度

root-mean-square speed

均方根速率[度]

rotary speed

旋转速度

rotational speed

转动速度, 圆周速度, 角速度

rotor speed

转子转速; 旋翼转速; (青贮料联合收割机的)滚刀转速

rubbing speed

摩擦速度

runaway speed

失控速度, 飞逸转速

running speed

行驶速度, 行车速度, 运转速度; 工作速度

running-in speed

试转速度, 跑合速度

saturating speed

饱和速度

schedule speed

表定[规定]速度

screen speed

屏幕惰性, (荧光屏)响应速度

shunting speed

调车速度

shutter speed

快门速度

slide speed

滑块速度, 滑动速度

slip speed

转差率, 转差速度

sonic speed

声速

sound speed

有声电影放映速率

specific speed

比速; 比转数(离心泵或离心风机), 特定速率, 额定转速

spot speed

光点扫描速率, 瞬时速率

stage speed

级速率, 阶段速率

stalling speed

失速速度

still speed

静象速度

storage speed

存储速度

storage writing speed

存储记录速度

subcritical speed

亚临界速度

subsonic speed

亚音速

supersonic speed

超声速, 超音速

surface speed

表面速度

sustained speed

持久速率

sweep speed

扫描速率

switching speed

开关速度, 转换速度

swiveling speed

回转速度

synchronous speed

同步速度, 同步转速

take-off speed

取出速度; 起飞速率

take-up speed

卷带速度, 收带速度

target speed

目的速度; 目标航速

teeming speed

铸速

telegraph speed

通报速率, 发信速度

terminal speed

极限速度, 临界速度, 终速

threshold speed

阈流量

tip speed

(桨叶)梢速, (叶片)端速; 泵, 涡轮, 鼓风机叶片的圆周速度

toggle speed

反复速度, 启动速度

transfer speed

传送速度

translational speed

移动速度

translatory speed

翻译速度, 转换速度

transmission speed

传输[传送]速度

transonic speed

跨音速

travelling speed

移动速度; 运输速度

trimming speed

修整速度

true speed

真速, 实际速度

turnaround speed

周转速度

uniform speed

匀速, 等速

unloading speed

卸载速度; (肥料的)撒布速度

useful speed

有效速度

variable speed

变速

vertical speed

垂直方向速度, (上)升速(度)

whirling speed

临界速度; 共振回转速度; 旋转物危险速度

wind speed

风速

winding speed

提升速度

wire speed

网速

working speed

工作[运行]速度

yard speed

调车场速度

zero scan speed

零位扫描速度

speed of escape

第二宇宙速度, 逃逸速度

speed of lens

透镜率

speed of sensation

感觉速度

speed of shot

击球速度

见 haste; hurry

speed

AHD:[sp秃]

D.J.:[spi8d]

K.K.:[spid]

n.

Physics

The rate or a measure of the rate of motion, especially:

Distance traveled divided by the time of travel.

The limit of this quotient as the time of travel becomes vanishingly small; the first derivative of distance with respect to time.

The magnitude of a velocity.

Swiftness of action.

The act of moving rapidly.

The state of being in rapid motion; rapidity.

A transmission gear or set of gears in a motor vehicle.

A numerical expression of the sensitivity of a photographic film, plate, or paper to light.

The capacity of a lens to accumulate light at an appropriate aperture.

The length of time required or permitted for a camera shutter to open and admit light.

Slang

Amphetamine.

Slang

One that suits or appeals to a person's inclinations, skills, or character:

Living in a large city is not my speed.

Archaic

Prosperity; luck.

speed

v.

sped;

AHD:[sp礵] or speeded speed.ing; speeds;

speed

v.tr.

To cause to go, move, or proceed quickly; hasten.

To increase the speed or rate of; accelerate:

speed up a car; sped production.

To wish Godspeed to.

To further, promote, or expedite (a legal action, for example).

Archaic

To help to succeed or prosper; aid.

speed

v.intr.

To go, move, or proceed quickly:

sped to the rescue.

To drive at a speed exceeding a legal limit:

was speeding on the freeway.

To pass quickly:

The days sped by. The months have sped along.

To move, work, or happen at a faster rate; accelerate:

His pulse speeded up.

Archaic

To prove successful; prosper.

To get along in a specified manner; fare.

up to speed

Operating at maximum speed.

Producing something or performing at an acceptable rate or level.

Informal

Fully informed of or conversant with:

I'm not up to speed on these issues yet.

Middle English spede

fromOld English sp秃[ success, swiftness ]

*See Also : sp? In Appendix

speed hurry hasten quicken accelerate precipitateThese verbs mean to proceed or cause to proceed rapidly or more rapidly. SKW Speed refers to swift motion or action:

The train sped through the countryside.

Postal workers labored overtime to speed delivery of the Christmas mail. SKWHurry implies a markedly faster rate than usual, often with concomitant confusion or commotion:

If you don't hurry, you'll miss the plane.

Don't let anyone hurry you into making a decision you'll regret later. SKWHasten suggests urgency and often eager or rash swiftness:

I hasten to respond to your invitation.

Put the hot broth in the refrigerator for an hour to hasten cooling. SKWQuicken and especially accelerate refer to increase in rate of activity, growth, or progress:

The dancer's breathing quickened as she approached the end of her solo.

The runner quickened his pace as he drew near to the finish line.

Despite efforts to eradicate it, corruption persists, though it doesn't accelerate.

Heat greatly accelerates the deterioration of perishable foods. SKWPrecipitate implies suddenness or impetuousness that often causes something to happen abruptly or prematurely:

The mere mention of the issue precipitated an outburst of indignation during the meeting.

See Also: haste

The fable of the tortoise and the hare teaches us that speed does not always spell success. Historically in English, however, it does: the Old English word sp秃, from which our word speed is descended, originally meant 损rosperity, successful outcome, ability, or quickness.?A corresponding verb, sp秃an, in Modern English the verb speed, meant 搕o succeed, prosper, or achieve a goal? and an adjective, sp秃ig, the ancestor of our word speedy, meant 搘ealthy, powerful.?Except for archaic uses the words today relate only to the general sense of 捣elocity.?The meaning 搒uccess?is retained chiefly in the compound Godspeed, a noun formed from the phrase meaning 揋od prosper you.?

speed

速度

speed

AHD:[sp秃]

D.J.:[spi8d]

K.K.:[spid]

n.

Physics

【物理学】

The rate or a measure of the rate of motion, especially:

速率运动的速率或限度,尤指:

Distance traveled divided by the time of travel.

平均速度运动距离除以运动时间所得之结果

The limit of this quotient as the time of travel becomes vanishingly small; the first derivative of distance with respect to time.

瞬时速度当运动时间小到可以忽略时,此商数的极值;距离相对于时间的一阶导函数

The magnitude of a velocity.

速度的最大值

Swiftness of action.

快速,迅速

The act of moving rapidly.

快速的行动

The state of being in rapid motion; rapidity.

迅速快速运动的状态;快速

A transmission gear or set of gears in a motor vehicle.

汽车的变速装置

A numerical expression of the sensitivity of a photographic film, plate, or paper to light.

感光度照相底片、底板或纸对光的敏感度的数字表示

The capacity of a lens to accumulate light at an appropriate aperture.

聚光率透镜在合适的镜径下聚光的能力

The length of time required or permitted for a camera shutter to open and admit light.

暴光的时间照相机快门打开并让光线进入所需的或能允许的时间长度

Slang

【俚语】

Amphetamine.

安非他命

Slang

【俚语】

One that suits or appeals to a person's inclinations, skills, or character:

嗜好,个性适合某人的兴趣、技能或性格的东西:

Living in a large city is not my speed.

住在大城市里不是我所喜欢的

Archaic

【古语】

Prosperity; luck.

繁荣;幸运

speed

v.

sped;

AHD:[sp礵] or speeded speed.ing; speeds;

speed

v.tr.

To cause to go, move, or proceed quickly; hasten.

催促使迅速离开、移动或前进;催促

To increase the speed or rate of; accelerate:

加快…的速度增加速度或速率;加速:

speed up a car; sped production.

使汽车加速;加速生产

To wish Godspeed to.

祝某人一路平安

To further, promote, or expedite (a legal action, for example).

促进,增加,加快(如法律程序)

Archaic

【古语】

To help to succeed or prosper; aid.

使成功,使繁荣帮助…以使成功或繁荣昌盛;帮助

speed

v.intr.

To go, move, or proceed quickly:

急行,赶快去迅速地离开、移动或前进:

sped to the rescue.

迅速前去搭救

To drive at a speed exceeding a legal limit:

超速驾驶以超过法定极限的速度驾车:

was speeding on the freeway.

在高速公路超速行驶

To pass quickly:

快速越过:

The days sped by. The months have sped along.

一天又一天飞逝而过。一月又一月急驰而过

To move, work, or happen at a faster rate; accelerate:

变快以更快的速度移动、工作或发生;加速:

His pulse speeded up.

他的心跳加速了

Archaic

【古语】

To prove successful; prosper.

成功;繁荣昌盛

To get along in a specified manner; fare.

进展顺利按特定方式进行;进展

up to speed

Operating at maximum speed.

以最快的速度运行

Producing something or performing at an acceptable rate or level.

以合适的速度或标准生产某物或执行某事

Informal

【非正式用语】

Fully informed of or conversant with:

悉知的,熟悉的:

I'm not up to speed on these issues yet.

我对这些事情还不熟悉

Middle English spede

中古英语 spede

fromOld English sp秃[ success, swiftness ]

源自古英语 sp秃[ 成功,迅速 ]

*See Also : sp? In Appendix

speed hurry hasten quicken accelerate precipitateThese verbs mean to proceed or cause to proceed rapidly or more rapidly. Speed refers to swift motion or action:

The train sped through the countryside.

火车飞驰而过乡间。

Postal workers labored overtime to speed delivery of the Christmas mail. Hurry implies a markedly faster rate than usual, often with concomitant confusion or commotion:

邮电工人加班加点以加速圣诞期间信件的发送。SKWHurry意指比通常快得多的速度,经常伴随着混乱或骚动:

If you don't hurry, you'll miss the plane.

如果你不迅速些,你将会错过班机了。

Don't let anyone hurry you into making a decision you'll regret later. Hasten suggests urgency and often eager or rash swiftness:

不要在任何人的催促下匆促作出你以后会为之后悔的决定。SKWHasten有紧急之意,经常表示因焦急或草率而快速:

I hasten to respond to your invitation.

我会迅速答复你的邀请。

Put the hot broth in the refrigerator for an hour to hasten cooling. Quicken and especially accelerate refer to increase in rate of activity, growth, or progress:

把肉汁在冰箱中放一小时以加快冷却。SKWQuicken,特别是 accelerate是指增加活动、成长或进步的速度:

The dancer's breathing quickened as she approached the end of her solo.

舞蹈家在接近她独舞的尾声时呼吸变得急速了。

The runner quickened his pace as he drew near to the finish line.

赛跑者在接近终点时加快了他的步伐。

Despite efforts to eradicate it, corruption persists, though it doesn't accelerate.

尽管人们努力想根除腐败,但腐败现象仍存在着,虽然没有恶化。

Heat greatly accelerates the deterioration of perishable foods. Precipitate implies suddenness or impetuousness that often causes something to happen abruptly or prematurely:

热量会大大加快易腐食品的腐烂。SKWPrecipitate表示通常引起某事突然地或在时机未成熟时发生的突然性或匆促性:

The mere mention of the issue


标题名称:flutter级联,flutter二级联动列表
链接分享:http://bjjierui.cn/article/dsccjhh.html

其他资讯