英文字典中文字典


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







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

devise    音标拼音: [dɪv'ɑɪz] [dɪv'ɑɪs]
vt. 设计,发明,图谋,遗赠给
n. 遗赠

设计,发明,图谋,遗赠给遗赠

devise
n 1: a will disposing of real property
2: (law) a gift of real property by will
v 1: come up with (an idea, plan, explanation, theory, or
principle) after a mental effort; "excogitate a way to
measure the speed of light" [synonym: {invent}, {contrive},
{devise}, {excogitate}, {formulate}, {forge}]
2: arrange by systematic planning and united effort; "machinate
a plot"; "organize a strike"; "devise a plan to take over the
director's office" [synonym: {organize}, {organise}, {prepare},
{devise}, {get up}, {machinate}]
3: give by will, especially real property

Devise \De*vise"\, n. [OF. devise division, deliberation, wish,
will, testament. See {Device}.]
1. The act of giving or disposing of real estate by will; --
sometimes improperly applied to a bequest of personal
estate.
[1913 Webster]

2. A will or testament, conveying real estate; the clause of
a will making a gift of real property.
[1913 Webster]

Fines upon devises were still exacted. --Bancroft.
[1913 Webster]

3. Property devised, or given by will.
[1913 Webster]


Devise \De*vise"\, v. t. [imp. & p. p. {Devised}; p. pr. & vb.
n. {Devising}.] [OF. deviser to distribute, regulate, direct,
relate, F., to chat, fr. L. divisus divided, distributed, p.
p. of dividere. See {Divide}, and cf. {Device}.]
1. To form in the mind by new combinations of ideas, new
applications of principles, or new arrangement of parts;
to formulate by thought; to contrive; to excogitate; to
invent; to plan; to scheme; as, to devise an engine, a new
mode of writing, a plan of defense, or an argument.
[1913 Webster]

To devise curious works. --Ex. CCTV.
32.
[1913 Webster]

Devising schemes to realize his ambitious views.
--Bancroft.
[1913 Webster]

2. To plan or scheme for; to purpose to obtain.
[1913 Webster]

For wisdom is most riches; fools therefore
They are which fortunes do by vows devise.
--Spenser.
[1913 Webster]

3. To say; to relate; to describe. [Obs.] --Chaucer.
[1913 Webster]

4. To imagine; to guess. [Obs.] --Spenser.
[1913 Webster]

5. (Law) To give by will; -- used of real estate; formerly,
also, of chattels.

Syn: To bequeath; invent; discover; contrive; excogitate;
imagine; plan; scheme. See {Bequeath}.
[1913 Webster]


Devise \De*vise"\, n.
Device. See {Device}. [Obs.]
[1913 Webster]


Devise \De*vise"\, v. i.
To form a scheme; to lay a plan; to contrive; to consider.
[1913 Webster]

I thought, devised, and Pallas heard my prayer. --Pope.
[1913 Webster]

Note: Devise was formerly followed by of; as, let us devise
of ease. --Spenser.
[1913 Webster]

134 Moby Thesaurus words for "devise":
add a codicil, arrange, assemble, assign, attested copy, beget,
bequeath, bequeathal, bequest, bestow, blueprint, breed,
bring forth, bring into being, build, calculate, call into being,
cast, chart, codicil, cogitate, coin, collogue, collude, compose,
compound, conceive, concert, concoct, connive, conspire, construct,
contrive, convey, cook up, create, cut out, design, develop,
discover, dispose of, dope out, draft, dream up, elaborate,
engender, entail, erect, evolve, execute a will, extrude,
fabricate, fashion, figure, forecast, forge, form, formulate,
frame, fudge together, generate, get up, give, give being to,
give rise to, hand down, hand on, hatch, hatch up, improvise,
indite, inheritance, intend, intrigue, invent, lay plans, leave,
legacy, legate, machinate, make, make a bequest, make a projection,
make a will, make arrangements, make do with, make up, manufacture,
mature, methodize, mint, mold, organize, originate, pass on,
patch together, piece together, plan, plan ahead, prearrange,
prefabricate, prepare, probate, procreate, produce, program,
project, put together, put up, raise, rationalize, rear, run up,
schedule, schematize, scheme, set up, shape, spawn, strike out,
systematize, testament, think out, think up, transfer, transmit,
vamp up, whomp up, will, will and bequeath, will to, work out,
work up, write


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





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


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

































































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


  • c - What is the difference between ++i and i++? - Stack Overflow
    In C, what is the difference between using ++i and i++, and which should be used in the incrementation block of a for loop?
  • 英特尔的酷睿ultra和i系列CPU有什么区别?哪个好? - 知乎
    而如果你不在意GPU性能,大部分学习办公需求确实都是CPU密集型工作,也用不到什么图形性能,那么i系列如今有着不小的价格优势。还有一种极端一点的情况,如果你是带有独显的笔记本或者主机,那么也就没必要太在意CPU的集显了,尤其是桌面主机,其实选择i系列处理器会更有性价比。 其实如今
  • What is the difference between i++ ++i in a for loop?
    The way for loop is processed is as follows 1 First, initialization is performed (i=0) 2 the check is performed (i < n) 3 the code in the loop is executed 4 the value is incremented 5 Repeat steps 2 - 4 This is the reason why, there is no difference between i++ and ++i in the for loop which has been used
  • How do I squash my last N commits together? - Stack Overflow
    git reset --soft HEAD~3 git commit --edit -m"$(git log --format=%B --reverse HEAD HEAD@{1})" Both of those methods squash the last three commits into a single new commit in the same way The soft reset just re-points HEAD to the last commit that you do not want to squash Neither the index nor the working tree are touched by the soft reset, leaving the index in the desired state for your
  • What is the difference between i++ and ++i in C#?
    I've seen them both being used in numerous pieces of C# code, and I'd like to know when to use i++ and when to use ++i? (i being a number variable like int, float, double, etc)
  • c++ - ++i or i++ in for loops ?? - Stack Overflow
    Possible Duplicate: Is there a performance difference between i++ and ++i in C++? Is there a reason some programmers write ++i in a normal for loop instead of writing i++?
  • operators - javascript i++ vs ++i - Stack Overflow
    You'll need to complete a few actions and gain 15 reputation points before being able to upvote Upvoting indicates when questions and answers are useful What's reputation and how do I get it? Instead, you can save this post to reference later
  • How can I download . vsix files now that the Visual Studio Code . . .
    I need to download vsix versions of extensions for my coding environment (Python and Pylance) on an offline machine, but there does not appear to be a way to do so The official instructions appea
  • Is there a performance difference between i++ and ++i in C?
    Even though the performance difference is negligible, and optimized out in many cases - please take note that it's still good practice to use ++i instead of i++ There's absolutely no reason not to, and if your software ever passes through a toolchain that doesn't optimize it out your software will be more efficient Considering it is just as easy to type ++i as it is to type i++, there is
  • Whats the difference between lt;b gt; and lt;strong gt;, lt;i gt; and lt;em gt;?
    They have the same effect on normal web browser rendering engines, but there is a fundamental difference between them As the author writes in a discussion list post: Think of three different situations: web browsers blind people mobile phones "Bold" is a style - when you say "bold a word", people basically know that it means to add more, let's say "ink", around the letters until they stand





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