英文字典中文字典


英文字典中文字典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       







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

mutable    
a. 易变的,性情不定的

易变的,性情不定的

mutable
adj 1: capable of or tending to change in form or quality or
nature; "a mutable substance"; "the mutable ways of
fortune"; "mutable weather patterns"; "a mutable foreign
policy" [synonym: {mutable}, {changeable}] [ant:
{changeless}, {immutable}]

Mutable \Mu"ta*ble\, a. [L. mutabilis, fr. mutare to change. See
{Move}.]
1. Capable of alteration; subject to change; changeable in
form, qualities, or nature.
[1913 Webster]

Things of the most accidental and mutable nature.
--South.
[1913 Webster]

2. Changeable; inconstant; unsettled; unstable; fickle. "Most
mutable wishes." --Byron.
[1913 Webster]

Syn: Changeable; alterable; unstable; unsteady; unsettled;
wavering; inconstant; variable; fickle.
[1913 Webster]

133 Moby Thesaurus words for "mutable":
able to adapt, adaptable, adjustable, alterable, alterative,
ambitendent, ambivalent, at loose ends, brittle, capricious,
changeable, changeful, changing, checkered, choppy, corruptible,
deciduous, deviating, deviative, deviatory, different, disorderly,
divaricate, divergent, diversified, diversiform, double-minded,
dubious, dying, ephemeral, erose, erratic, evanescent,
ever-changing, fading, fence-sitting, fence-straddling, fickle,
fleeting, flexible, flitting, fluctuating, fluid, fly-by-night,
flying, fragile, frail, fugacious, fugitive, impermanent,
impetuous, impulsive, inconsistent, inconstant, indecisive,
infirm of purpose, insubstantial, irregular, irresolute,
irresolved, jagged, jerky, kaleidoscopic, lubricious, malleable,
many-sided, mercurial, metamorphic, mobile, modifiable, momentary,
mortal, motley, movable, mugwumpian, mugwumpish, nonconformist,
nondurable, nonpermanent, nonstandard, nonuniform, of two minds,
passing, perishable, permutable, plastic, pluralistic, protean,
proteiform, ragged, resilient, rough, rubbery, shifty,
shilly-shally, short-lived, slippery, spasmodic, sporadic,
subject to death, supple, swaying, swinging, temperamental,
temporal, temporary, ticklish, transient, transitive, transitory,
uncertain, undecided, undetermined, undurable, unenduring,
unequable, unequal, uneven, unorthodox, unresolved, unsettled,
unstable, unsteady, unsystematic, ununiform, vacillating, variable,
variegated, variform, various, varying, volatile, wavering


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





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


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

































































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


  • 深入理解C++中的mutable关键字-CSDN博客
    mutable的中文意思是“可变的,易变的”,跟constant(既C++中的const)是反义词。 在C++中,mutable也是为了突破const的限制而设置的。 被mutable修饰的变量,将永远处于可变的状态,即使在一个const函数中。
  • MUTABLE中文 (简体)翻译:剑桥词典 - Cambridge Dictionary
    MUTABLE翻译:可变的;会变的。 了解更多。
  • MUTABLE Definition Meaning - Merriam-Webster
    The meaning of MUTABLE is prone to change : inconstant How to use mutable in a sentence
  • C++中的mutable关键字 - 夜行过客 - 博客园
    mutalbe 的中文意思是“可变的,易变的”,跟constant(既C++中的const)是反义词。 在C++中, mutable 也是为了突破const的限制而设置的。 被 mutable 修饰的变量,将永远处于可变的状态,即使在一个const函数中。 我们知道,被const关键字修饰的函数的一个重要作用就是为了能够保护类中的成员变量。 即:该函数可以使用类中的所有成员变量,但是不能修改他们的值。 然而,在某些特殊情况下,我们还是需要在const函数中修改类的某些成员变量,因为要修改的成员变量与类本身并无多少关系,即使修改了也不会对类造成多少影响。 当然,你可以说,你可以去掉该函数的const关键字呀! 但问题是,我只想修改某个成员变量,其余成员变量仍然希望被const保护。
  • mutable(英文单词)_百度百科
    mutable 可以用来指出,即使成员函数或者类变量为const,其某个成员也可以被修改。 在c++的类中, 如果一个成员函数被const 修饰,那么它将无法修改其成员变量的,但是如果这个成员变量是被mutable修饰的话,则可以修改。
  • 一文带你搞懂 Mutable 与 Immutable在编程中,mutable 和 immutable 是描述数据 - 掘金
    在编程中,"mutable" 和 "immutable" 是描述数据结构或对象属性的术语。 它们区分了对象是否可以在创建后被修改。 一个对象或数据结构是可变的,如果在创建后可以直接修改其状态或内容,修改可以包括添加、删除或更改对象的内容。 示例: JavaScript 中的数组 (Array) 和对象 (Object) 是可变的。 Python 中的列表 (list) 和字典 (dict) 也是可变的。 特点: 更改原对象不需要重新分配内存空间。 可以直接通过索引或键值来修改元素。 更改可能会影响共享相同引用的其他变量或对象。 优缺点: 优点: 更加灵活,可以方便地修改数据。 缺点: 更难维护,容易引发意外的副作用,尤其是在多线程或多进程环境中。
  • mutable是什么意思_mutable的翻译_音标_读音_用法_例句_爱词霸在线词典
    英英释义 Adjective 1 capable of or tending to change in form or quality or nature; "a mutable substance" "the mutable ways of fortune" " mutable weather patterns" "a mutable foreign policy"
  • C++学习:mutable关键字 - 知乎
    1 在类中,被标记为const,你不能修改类成员变量,如图1中,GetName函数被标为const,它无法修改类成员变量m_name 2 非要修改某个变量,可以在某个变量前加 mutable 如图2,比如想计算GetName函数被调用了多少次 二、在 lambda 中使用 创建一个lambda,名字叫f,如图3,如果通过值“=”来传递,会报错。 你只能脱裤子放屁,需要弄进来另一个变量,赋值给他,再进行操作 或者加mutable,这样可以直接操作它(其实我不理解,为什么不直接通过引用传递,这样不加mutable也能运行) 学习Cherno的视频总结,坚持看到Cherno的颜值变化。





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