开发中的英语积累 P25:Axis、Stroke、Corner、Interceptor、Declared、Internal

英文词性

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

一、Axis

复制代码
changes main axis to vertical
词性 含义
n. 轴;坐标轴;主轴
复制代码
# X 轴

x-【axis】

# 坐标轴刻度

【axis】 tick

# CSS Flexbox 中,主轴决定子元素的排列方向。

In CSS Flexbox, the main 【axis】 determines the arrangement direction of child elements.

# 数据可视化库允许自定义坐标轴刻度的间隔和格式。

Data visualization libraries allow customization of 【axis】 tick intervals and formats.

二、Stroke

xml 复制代码
<stroke
    android:width="1dp"
    android:color="@color/blue" />
词性 含义
n. 笔画;描边
v. 划动
复制代码
# 描边宽度

【stroke】 width

# 笔画颜色

【stroke】 color

# SVG 元素可通过设置 stroke 和 stroke-width 属性来控制描边。

SVG elements can control their outline via 【stroke】 and stroke-width attributes.

# 手势识别器检测用户的触摸划动路径以判断滑动方向。

Gesture recognizers detect the user's touch 【stroke】 path to determine swipe direction.

三、Corner

xml 复制代码
<corners
    android:radius="2dp"
    android:topLeftRadius="8dp"
    android:topRightRadius="8dp"
    android:bottomRightRadius="0dp"
    android:bottomLeftRadius="0dp" />
词性 含义
n. 角;拐角;角落
复制代码
# 圆角半径
corner radius

# 四角对齐
four-corner alignment

# 设置 View 的圆角半径可使其边缘变圆润。

Setting a View's corner radius makes its edges rounded.

# 窗口最大化时,按钮会移动到左上角。

When maximized, the window buttons move to the top-left corner.

四、Interceptor

java 复制代码
public interface HandlerInterceptor {
    ...
}
词性 含义
n. 拦截器;中间件
复制代码
# 网络请求拦截器

network 【interceptor】

# 权限拦截器

permission 【interceptor】

# OkHttp 库支持添加网络拦截器用于记录请求 / 响应。

The OkHttp library supports adding network 【interceptors】 to log requests/responses.

# 在 Spring Boot 中,HandlerInterceptor 可在 Controller 执行前后插入逻辑。

In Spring Boot, 【HandlerInterceptor】 can insert logic before or after Controller execution.

五、Declared

java 复制代码
public native Field getDeclaredField(String name) throws NoSuchFieldException;
词性 含义
adj. 已声明的;被定义的
复制代码
# 已声明变量

【declared】 variable

# 声明类型

【declared】 type

# Java 中,变量必须先声明才能使用。

In Java, variables must be 【declared】 before use.

# 该方法返回值的声明类型是 List<String>。

The method's return value has a 【declared】 type of List<String>.

六、Internal

java 复制代码
private native Constructor<?>[] getDeclaredConstructorsInternal(boolean publicOnly);
词性 含义
adj. 内部的;内联的;私有的
复制代码
# 内部类
【internal】 class

# 内部错误
【internal】 error

# 不应将内部 API 暴露给外部客户端,以免破坏封装。

【internal】 APIs should not be exposed to external clients to preserve encapsulation.

# 服务器返回内部错误表示后端处理失败,非客户端问题。

The server returns an 【internal】 error when backend processing fails, not due to client issues.
相关推荐
扑火的小飞蛾14 小时前
【Ansible学习笔记01】 批量执行 shell 命令
笔记·学习·ansible
hunter145014 小时前
2026.1.4 html简单制作
java·前端·笔记·html
草莓熊Lotso14 小时前
Python 库使用全攻略:从标准库到第三方库(附实战案例)
运维·服务器·汇编·人工智能·经验分享·git·python
d111111111d14 小时前
STM32 USART接收中断:如何判断数据接收完成?
stm32·单片机·嵌入式硬件·学习·模块测试
葡萄杨14 小时前
【存算芯片】存算阵列模型和wavedrom
笔记
报错小能手14 小时前
线程池学习(一) 理解操作系统 进程 线程 协程及上下文切换
学习
中屹指纹浏览器14 小时前
2026指纹浏览器技术选型与实践:从单账号到千级矩阵的部署优化
经验分享·笔记
pps-key14 小时前
麻雀AI:一个能自己学习交易的智能体
人工智能·学习
weixin_4374977714 小时前
学习笔记:用于EDA的LLMs专题会议论文
人工智能·笔记·搜索引擎·fpga开发