# 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】 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 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】 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.