英文字典中文字典


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







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

condensed    音标拼音: [kənd'ɛnst]
a. 浓缩[凝结] 的;扼要的

浓缩[凝结] 的;扼要的

Condense \Con*dense"\, v. t. [imp. & p. p. {Condensed}; p. pr. &
vb. n. {Condensing}.] [L. condensare; con- densare to make
thick or dense, densus thick, dense: cf. F. condenser. See
{Dense}, and cf. {Condensate}.]
1. To make more close, compact, or dense; to compress or
concentrate into a smaller compass; to consolidate; to
abridge; to epitomize.
[1913 Webster]

In what shape they choose,
Dilated or condensed, bright or obscure. --Milton.
[1913 Webster]

The secret course pursued at Brussels and at Madrid
may be condensed into the usual formula,
dissimulation, procrastination, and again
dissimulation. --Motley.
[1913 Webster]

2. (Chem. & Physics) To reduce into another and denser form,
as by cold or pressure; as, to condense gas into a liquid
form, or steam into water.
[1913 Webster]

{Condensed milk}, milk reduced to the consistence of very
thick cream by evaporation (usually with addition of
sugar) for preservation and transportation.

{Condensing engine}, a steam engine in which the steam is
condensed after having exerted its force on the piston.

Syn: To compress; contract; crowd; thicken; concentrate;
abridge; epitomize; reduce.
[1913 Webster]


condensed \condensed\ adj.
1. (Psychol) representing two or more ideas or emotions by a
single symbol; as, a condensed expression of various
feelings and ideas.
[WordNet 1.5]

2. shortened by rewriting with fewer words; -- used of texts;
as, a condensed book. Opposite of {unabridged}.

Syn: abridged.
[WordNet 1.5 PJC]

3. reduced to a stronger or more concentrated form; as,
condensed milk. Opposite of {uncondensed}.

Syn: concentrated[5].
[WordNet 1.5]

4. narrower than usual for a particular height; -- of
printers' type. Opposite of {expanded}.
[WordNet 1.5]

109 Moby Thesaurus words for "condensed":
Spartan, abbreviated, abridged, abstracted, aposiopestic, bobbed,
bobtail, bobtailed, brief, brusque, canned, capsule, capsulized,
clamped, clipped, close, close-knit, close-textured, close-woven,
compact, compacted, compendious, compressed, concentrated, concise,
concrete, congested, consolidated, constricted, contracted,
crammed, crammed full, cramped, crisp, cropped, crowded, curt,
curtailed, cut, cut short, dense, digested, docked, elided,
elliptic, epigrammatic, firm, gluey, gnomic, hard, heavy,
impenetrable, impermeable, jam-packed, jammed, knitted, laconic,
massive, mowed, mown, nipped, nonporous, packed, pinched,
pinched-in, pithy, pocket, pointed, pollard, polled, potted,
pruned, puckered, pursed, reaped, reserved, sententious, serried,
shaved, sheared, short, short and sweet, short-cut, shortened,
snub, snubbed, solid, solidified, squeezed, strangled,
strangulated, substantial, succinct, summary, synopsized, taciturn,
terse, thick, thick-growing, thickset, tight, to the point,
trimmed, truncated, viscid, viscose, viscous, wasp-waisted,
wrinkled


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





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


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

































































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


  • regex - Adding ?nocache=1 to every url (including the assets like . . .
    But what I would like to do is to apply ?nocache=1 to every URL related to the site (including the assets like style css) so that I get the non cached version of the files
  • Is there a lt;meta gt; tag to turn off caching in all browsers?
    I read that when you don't have access to the web server's headers you can turn off the cache using:
  • caching - No cache in Node. js server - Stack Overflow
    Ok, even if you aren't using express, what essentially needed is to set the nocache headers I'm adding the headers in a reusable middleware, otherwise you can set those headers in any way that works
  • c# - Prevent Caching in ASP. NET MVC for specific actions using an . . .
    If your class or action didn't have NoCache when it was rendered in your browser and you want to check it's working, remember that after compiling the changes you need to do a "hard refresh" (Ctrl+F5) in your browser Until you do so, your browser will keep the old cached version, and won't refresh it with a "normal refresh" (F5)
  • How do we control web page caching, across all browsers?
    Our investigations have shown us that not all browsers respect the HTTP cache directives in a uniform manner For security reasons we do not want certain pages in our application to be cached, eve
  • How to disable webpage caching in ExpressJS + NodeJS?
    Beware of ETag Even if you are using nocache, the ETag header isn't removed, because it works in a different way It's generated at the end of the request and could be another source of unintended caching In order to handle it you have two choices app set The first is disabling it using express builtin app set('etag', false); method on-headers The second is removing the header just before
  • Sequence cache and performance - Stack Overflow
    If you omit both CACHE and NOCACHE, then the database caches 20 sequence numbers by default Oracle recommends using the CACHE setting to enhance performance if you are using sequences in an Oracle Real Application Clusters environment Using the CACHE and NOORDER options together results in the best performance for a sequence CACHE option is used without the ORDER option, each instance
  • How to force Docker for a clean build of an image
    I have build a Docker image from a Docker file using the below command $ docker build -t u12_core -f u12_core When I am trying to rebuild it with the same command, it's using the build cache li
  • How to force a web browser NOT to cache images - Stack Overflow
    Spent days trying to get Chromium based app to stop caching images The ?nocache with time echo solved the issue Thank you!
  • Difference between no-cache and must-revalidate for Cache-Control?
    @Anshul No, must-revalidate and no-cache have different meaning for fresh responses: If a cached response is fresh (i e, the response hasn't expired), must-revalidate will make the proxy serve it right away without revalidating with the server, whereas with no-cache the proxy must revalidate the cached response regardless of freshness Source: "HTTP - The Definitive Guide", pages 182-183





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