英文词性
| 词性 | 说明 | 举例 |
|---|
n. | 名词 | student:学生 |
pron. | 代词 | you:你 |
adj. | 形容词 | happy:高兴的 |
adv. | 副词 | quickly:迅速地 |
v. | 动词 | run:跑 |
num. | 数词 | three:三 |
art. | 冠词 | the:这个 |
prep. | 介词 | at:在... |
conj. | 连词 | and:和 |
interj. | 感叹词 | wow:哇 |
一、Restrict
public@interfaceRestrictTo{}
# 权限限制 【restrict】 permission
# 网络访问限制 【restrict】 network access
# 系统管理员可以限制用户对敏感目录的访问。 The system administrator can 【restrict】 user access to sensitive directories.
# 应用程序默认限制外部网络连接以增强安全性。 The application defaults to 【restricting】 external network connections for enhanced security.
二、Validator
validator:(rule,value,callBack)=>{...}
# 数据验证器 data 【validator】
# 格式验证器 format 【validator】
# 开发者为用户输入编写了自定义数据验证器。 Developers wrote a custom data 【validator】 for user input.
# 表单提交前,前端会调用表单验证器进行合法性检查。 Before form submission, the frontend calls the form 【validator】 for validation.
三、Scene
viewer.scene.screenSpaceCameraController.minimumZoomDistance=10;
# 游戏场景 game 【scene】
# UI 场景切换 UI 【scene】 transition
# 3D 场景图 3D 【scene】 graph
# Unity 引擎中,每个关卡通常对应一个独立的游戏场景。 In Unity, each level typically corresponds to an independent game 【scene】.
四、Destination
viewer.camera.flyTo({destination:Cesium.Cartesian3.fromDegrees(originLongitude,originLatitude,10000),duration:1,});
# 导航目的地 navigation 【destination】
# 页面跳转目标 page navigation 【destination】
# GPS 显示当前路线的最终目的地。 The GPS displays the final 【destination】 of the current route.
# 文件上传时需指定服务器上的目标路径。 When uploading files, you must specify the 【destination】 path on the server.
五、Elapsed
longelapsed=System.nanoTime()-startTime;
# 已用时间 【elapsed】 time
# 消耗时间 【elapsed】 duration
# 任务完成时打印了总经过时间。 The task printed the total 【elapsed】 time upon completion.
# 使用 System.currentTimeMillis() 计算操作的经过时间。 Use System.currentTimeMillis() to calculate the 【elapsed】 time of an operation.
六、Remaining
longremaining=delayNanos-elapsed;
# 剩余时间 【remaining】 time
# 剩余配额 【remaining】 quota
# 任务进度条显示剩余时间和已完成百分比。 The progress bar shows 【remaining】 time and percentage completed.
# 磁盘清理工具提示用户还有多少剩余空间可用。 The disk cleanup tool informs the user how much 【remaining】 space is available.