英文字典中文字典


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







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

inflexible    音标拼音: [ɪnfl'ɛksəbəl]
a. 不屈曲的,不屈挠的,顽固的

不屈曲的,不屈挠的,顽固的

inflexible
adj 1: incapable of change; "a man of inflexible purpose" [ant:
{flexible}]
2: not making concessions; "took an uncompromising stance in the
peace talks"; "uncompromising honesty" [synonym:
{uncompromising}, {sturdy}, {inflexible}] [ant:
{compromising}, {conciliatory}, {flexible}]
3: resistant to being bent; "an inflexible iron bar"; "an
inflexible knife blade"; [ant: {flexible}, {flexile}]
4: incapable of adapting or changing to meet circumstances; "a
rigid disciplinarian"; "an inflexible law"; "an unbending
will to dominate" [synonym: {inflexible}, {rigid}, {unbending}]

Inflexible \In*flex"i*ble\, a. [L. inflexiblis: cf. F.
inflexible. See {In-} not, and {Flexible}.]
1. Not capable of being bent; stiff; rigid; firm; unyielding.
[1913 Webster]

2. Firm in will or purpose; not to be turned, changed, or
altered; resolute; determined; unyieding; inexorable;
stubborn.
[1913 Webster]

"Inflexibleas steel." --Miltom.
[1913 Webster]

A man of upright and inflexible temper . . . can
overcome all private fear. --Addison.
[1913 Webster]

3. Incapable of change; unalterable; immutable.
[1913 Webster]

The nature of things is inflexible. --I. Watts.

Syn: -- Unbending; unyielding; rigid; inexorable;
pertinacious; obstinate; stubborn; unrelenting.
[1913 Webster]

160 Moby Thesaurus words for "inflexible":
adamant, adamantine, at a standstill, cast-iron, certain,
changeless, closed to, constant, determinate, determined, dogged,
dour, dyed, established, fated, fateful, firm, fixed, flinty,
frozen, fundamentalist, grim, hard, hard and fast, hard-core,
hard-line, headstrong, hidebound, immobile, immotile, immotive,
immovable, immutable, impersuadable, impersuasible, impervious,
implacable, impliable, inalterable, indefeasible, indomitable,
inductile, inelastic, ineluctable, inescapable, inevasible,
inevitable, inexorable, inextensible, inextensile, inextensional,
intractable, intractile, intransigent, invariable, invincible,
iron, ironbound, ironclad, ironhanded, irreconcilable, irremovable,
irresilient, irresistible, irrevocable, loyal, mulish,
muscle-bound, necessary, nonelastic, nonstretchable, obdurate,
obstinate, orthodox, pat, pigheaded, procrustean, purist, puristic,
puritan, puritanic, refractory, relentless, resistless, resolute,
resolved, rigid, rigorist, rigoristic, rigorous, rock-ribbed,
rockbound, set, settled, severe, single-minded, sot, standpat,
stationary, staunch, steadfast, steady, steely, stern, stiff,
stony, straightlaced, straitlaced, strict, stubborn, sure,
sure as death, sure as fate, true, unaccommodating, unadaptable,
unaffected, unalterable, unamenable, unavoidable, unbending,
unchangeable, unchanging, uncompliant, uncompromising,
unconquerable, uncontrollable, undeflectable, unextendible,
unextensible, unflappable, unflexible, ungiving, unimpressionable,
uninfluenceable, unlimber, unmalleable, unmodifiable, unmovable,
unmoved, unmoving, unpersuadable, unpliable, unpliant,
unpreventable, unreceptive, unrelenting, unresponsive, unshakable,
unshakeable, unshaken, unstoppable, unsuggestible, unsusceptible,
unswayable, unswerving, untractable, unvaried, unvarying,
unyielding


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





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


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

































































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


  • Using and updating objects with Angular signals - Stack Overflow
    I also thought about turning each value, firstName, lastName into their own signals, but that would get out of hand really and inflexible fast as values get added to the object like streetAddress, poBox, etc
  • css - Flex item exceeds its container - Stack Overflow
    I have a flex container with a defined width Container has flex-direction: row and 2 columns One is fixed width, it is inflexible The other is flexible and should fit all container's remaining s
  • what is the definition of flexibility of a method in Machine Learning . . .
    A linear regression is said to be be inflexible On the other hand, if you have 9 training sets that are each very different, and you require a more rigid decision boundary, the model will be deemed flexible, just because the model can't be a straight line
  • How does `scp` differ from `rsync`? - Stack Overflow
    About Security, from openSSH 8 0 release notes: The scp protocol is outdated, inflexible and not readily fixed We recommend the use of more modern protocols like sftp and rsync for file transfer instead
  • Markdown and including multiple files - Stack Overflow
    The use of cat * md implies an inflexible file naming convention Not only would this convention necessarily prohibit recursive includes, for larger documentation projects it would be painful to add new files into the mix You would have to do a lot of counting and renaming
  • What are C++ functors and their uses? - Stack Overflow
    They only show how functors can be useful, the functors themselves are very basic and inflexible and this makes them less useful than, for example, what boost provides
  • css - Why em instead of px? - Stack Overflow
    I heard you should define sizes and distances in your stylesheet with em instead of in pixels So the question is why should I use em instead of px when defining styles in CSS? Is there a good exam
  • . htaccess - URL rewriting with PHP - Stack Overflow
    This will tell Apache to enable mod_rewrite for this folder, and if it gets asked a URL matching the regular expression it rewrites it internally to what you want, without the end user seeing it Easy, but inflexible, so if you need more power: The PHP route Put the following in your htaccess instead: (note the leading slash)
  • Can a constructor in Java be private? - Stack Overflow
    Yes, a constructor can be private There are different uses of this One such use is for the singleton design anti-pattern, which I would advise against you using Another, more legitimate use, is in delegating constructors; you can have one constructor that takes lots of different options that is really an implementation detail, so you make it private, but then your remaining constructors
  • What is the difference between lock, mutex and semaphore?
    A semaphore only hold the state of one integer, so often it's rather inflexible and many are needed at once -- causing difficulty in understanding code Also, the fact that any thread can release a semaphore is sometimes undesired





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