开发中的英语积累 P21:Parentable、Guideline、Manifest、Expire、Condition、Optimize

英文词性

词性 说明 举例
n. 名词 student:学生
pron. 代词 you:你
adj. 形容词 happy:高兴的
adv. 副词 quickly:迅速地
v. 动词 run:跑
num. 数词 three:三
art. 冠词 the:这个
prep. 介词 at:在...
conj. 连词 and:和
interj. 感叹词 wow:哇

一、Parentable

java 复制代码
public interface SupportParentable {
    ...
}
词性 含义
adj. 可作为父节点的;可拥有子项的
复制代码
# 可嵌套容器

【parentable】 container

# 支持子元素的节点

【parentable】 node

# 该 UI 元素被设计为可作为父节点,允许添加子控件。

The UI element is designed as 【parentable】, allowing child controls to be added.

# 在场景图中,只有可作为父节点的节点才能包含其他对象。

In a scene graph, only 【parentable】 nodes can contain other objects.

二、Guideline

复制代码
For more detailed information about tasks, the back stack, and navigation design guidelines
词性 含义
n. 指导方针;规范;准则
复制代码
# 编码规范

coding 【guideline】

# UI 设计指南

UI design 【guideline】

# 团队遵循统一的编码规范以保证代码一致性。

The team follows a unified coding 【guideline】 to ensure code consistency.

# Material Design 提供详细的 UI 设计指南。

Material Design provides detailed UI design 【guidelines】.

三、Manifest

复制代码
AndroidManifest.xml
词性 含义
n. 清单文件;声明文件
复制代码
# Android 清单文件

Android 【manifest】

# Web 应用清单

Web App 【Manifest】

# 权限声明

permission 【manifest】

# 缺少必要的清单条目会导致应用无法启动。

Missing required 【manifest】 entries can cause the app to fail to launch.

四、Expire

java 复制代码
public CacheBuilder<K, V> expireAfterWrite(long duration, TimeUnit unit) {
    ...
}
词性 含义
v. 过期;失效
复制代码
# 令牌过期

token 【expire】

# 会话过期时间

session 【expire】 time

# 登录令牌将在 30 分钟后过期。

The login token will 【expire】 in 30 minutes.

# 系统自动清理已过期的缓存数据以节省内存。

The system automatically cleans up 【expired】 cache data to save memory.

五、Condition

java 复制代码
public final class Preconditions {
    ...
}
词性 含义
n. 条件;状态;前提
复制代码
# 循环终止条件

loop termination 【condition】

# 系统运行状态

system running 【condition】

# while 循环将持续执行,直到条件为 false。

The while loop continues until the 【condition】 evaluates to false.

# 函数入口处应进行前置条件检查以确保参数有效。

【Precondition】 checks should be performed at the function entry to validate parameters.

六、Optimize

复制代码
Optimize Imports
词性 含义
v. 优化;改进性能或效率
复制代码
# 性能优化

performance 【optimize】

# 代码优化

code 【optimize】

# 编译器会自动优化无副作用的死代码。

The compiler automatically 【optimizes】 away dead code with no side effects.

# 图片资源经过优化后体积减小了 60%。

Image assets were 【optimized】, reducing their size by 60%.
相关推荐
一隅论数智1 天前
给AI一张“业务概念地图“:本体如何从哲学走向企业智能
大数据·人工智能·经验分享·笔记·学习·学习方法·政务
上海广测检测科技有限公司1 天前
智能平板出口巴西合规详解:Anatel射频、Inmetro电源/电池与LGPD数据合规叠加
经验分享
XiHongShi20161 天前
STM32F407 RTC定时器例程,建议保存
stm32·单片机·学习
爱吃苹果的日记本1 天前
离散数学第六课
学习·离散数学
FLJwu1 天前
存储与固件量产实战01:运动相机TF卡量产翻车实录!V30≠4K可用,90%OEM踩中的隐形售后坑
经验分享·数码相机·相机
AI职业加油站1 天前
AI智能体应用工程师证书:政策红利下的职业新风口
大数据·运维·人工智能·学习·职场发展
深圳老胡1 天前
STM32F407 控制 L6470 步进电机驱动 —— 控制过程简介
笔记·stm32·单片机·嵌入式硬件·代码规范
AI产品测评官1 天前
海内外AI招聘工具分赛道横向对比:五大品类的技术路线与选型参考
人工智能·ai·求职招聘
旖旎夜光1 天前
力控面试题 01.01: 判定字符是否唯一(位运算) —— 题解
c++·学习·算法·leetcode·力控