英文字典中文字典


英文字典中文字典51ZiDian.com



中文字典辞典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z       







请输入英文单字,中文词皆可:

infix    
vt. 钻进,插进,深植
n. 插入词,中缀

钻进,插进,深植插入词,中缀

infix
n 1: an affix that is inserted inside the word
v 1: put or introduce into something; "insert a picture into the
text" [synonym: {insert}, {infix}, {enter}, {introduce}]
2: attach a morpheme into a stem word

Infix \In*fix"\, v. t. [imp. & p. p. {Infixed}; p. pr. & vb. n.
{Infixing}.] [L. infixus, p. p of infigere to infix; pref.
in- in figere to fix: cf. F. infixer. See {Fix}.]
1. To set; to fasten or fix by piercing or thrusting in; as,
to infix a sting, spear, or dart. --Shak.
[1913 Webster]

The fatal dart a ready passage found,
And deep within her heart infixed the wound.
--Dryden.
[1913 Webster]

2. To implant or fix; to instill; to inculcate, as
principles, thoughts, or instructions; as, to infix good
principles in the mind, or ideas in the memory.
[1913 Webster]


Infix \In"fix\, n.
1. Something infixed. [R.] --Welsford.
[1913 Webster]

2. (Grammar) An element that is inserted into the body of an
elemt which it threby modifies, as a letter within a word.
[PJC]

140 Moby Thesaurus words for "infix":
IC analysis, accidence, add, adjoin, affix, affixation,
agglutinate, allomorph, allonge, annex, append, appendix, aside,
attach, beat into, bed, bound morpheme, brainwash, burden,
catechize, coda, codicil, commentary, complicate, condition,
confirm, conjoin, conjugation, cutting, declension, decorate,
deep-dye, define, derivation, difference of form, embed, enclitic,
encumber, engraft, engrave, entrench, envoi, epilogue, episode,
establish, etch, fit in, fix, formative, found, free form, glue on,
grave, ground, hitch on, imbue, immediate constituent analysis,
impact, implant, impregnate, impress, imprint, inculcate,
indoctrinate, infixation, inflection, infuse, ingrain, injection,
inlay, inoculate, inscribe, inseminate, insert, insertion,
insinuation, instill, intercalation, interjection, interlineation,
interlocution, interpolation, introduction, jam, join with, lodge,
marginalia, morph, morpheme, morphemic analysis, morphemics,
morphology, morphophonemics, note, obiter dictum, ornament, pack,
paradigm, parenthesis, paste on, plant, plus, postfix, postscript,
prefix, prefixation, print, proclitic, program, put with, radical,
remark, rider, root, saddle with, scholia, seat, set, set in,
settle, side remark, slap on, stamp, stem, stereotype, subjoin,
suffix, suffixation, superadd, superpose, tack on, tag, tag on,
tail, tessellate, theme, tossing-in, unite with, wedge,
word-formation


请选择你想看的字典辞典:
单词字典翻译
Infix查看 Infix 在百度字典中的解释百度英翻中〔查看〕
Infix查看 Infix 在Google字典中的解释Google英翻中〔查看〕
Infix查看 Infix 在Yahoo字典中的解释Yahoo英翻中〔查看〕





安装中文字典英文字典查询工具!


中文字典英文字典工具:
选择颜色:
输入中英文单字

































































英文字典中文字典相关资料:


  • 一文带你了解 Kotlin infix 函数的基本用法和使用场景infix 是 Kotlin 中的一个特殊关键字,它允许 - 掘金
    infix 是 Kotlin 中的一个特殊关键字,它允许我们以更自然、更可读的方式调用只有一个参数的函数。 这种函数调用方式去掉了传统的点号和括号,使代码更加简洁流畅。
  • Infix - Wikipedia
    An infix is an affix inserted inside a word stem (an existing word or the core of a family of words) It contrasts with adfix, a rare term for an affix attached to the outside of a stem, such as a prefix or suffix [note 1]
  • 中缀 - 百度百科
    中缀(infix)是附加于词根中间以辅助表义的词素,与词根共同构成新词,属于词缀类型之一。 例如汉语“马里马虎”中的“里”或“黑不溜秋”中的“不”,在跨语言文本注释中通常用角括号 标示。 动词首次使用于1502年,名词首次使用于1881年。
  • kotlin开发 infix中缀函数 - 观心静 - 博客园
    前言 infix是一个中缀函数,一个优化语法的语法糖函数的关键字,如果不会使用也不要紧,因为它并不是特别重要。 但是会使用它可以大大简化代码结构让代码更容易阅读。 在 Kotlin 中,infix 函数必须满足以下条件: 必须是成员函数或扩展函数。
  • Kotlin 中缀函数 (infix) - Kotlin教程 - 菜鸟教程
    Kotlin 中缀函数 (infix) 在本文中,您将学习使用 infix 符号在Kotlin中调用函数(借助示例)。 在学习如何创建具有中缀符号的函数之前,让我们先研究两个常用的中缀函数。 使用 || 和 操作时,编译器分别查找 or 和 and 函数,并在后台调用它们。
  • infix - 搜索 词典
    2 Infix notation is a common way of writing expressions, while prefix and postfix notations are primarily used in computer science 中缀 表示 法 是 书写 表达 式 的 常见 方式, 而 前缀 和 后缀 表示 法 主要 用于 计算机科学 领域。
  • Kotlin infix函数详解 - 知乎
    什么是 infix 函数? infix 关键字可以让 单参数的函数 以 更自然的语法 书写,使代码更易读。 你可以把它理解为 一种特殊的调用方式,不需要 和 (),让代码像 自然语言 一样流畅。 要使用 infix,需要满足 三个…
  • Kotlin infix函数用法详解什么是 infix 函数? infix 关键字可以让 单参数的函数 以 更自然的语法 - 掘金
    什么是 infix 函数? infix 关键字可以让 单参数的函数 以 更自然的语法 书写,使代码更易读。 你可以把它理解为 一种特殊的调用方式,不需要 和 (),让代码像 自然语言 一样流畅。
  • Kotlin基础知识_11-中缀表达式_infix - 夜行过客 - 博客园
    中缀表达式 中缀表达式是 Kotlin 中另一个有趣的语法糖。 在 Kotlin 中,我们可以使用 infix 关键字将某个函数标记为中缀函数。 这意味着我们可以在函数名和参数之间省略点号和括号。 例如,下面的代码展示了如何使用中缀表达式:
  • Kotlin 中 infix 关键字的用法与作用 - 知乎
    简述在 Kotlin 中, infix 是一个关键字,用于定义中缀函数(Infix Functions)。 中缀函数允许您在调用函数时使用更简洁的中缀符号(通常是一个操作符),而不是传统的点符号调用方式。 中缀函数的作用是使代码更具…





中文字典-英文字典  2005-2009