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







請輸入英文單字,中文詞皆可:

transient    音標拼音: [tr'ænʒənt]
n. 暫態,短期居留者,侯鳥,瞬變值
a. 短暫的,易變的,瞬變的,路過的

暫態,短期居留者,侯鳥,瞬變值短暫的,易變的,瞬變的,路過的

transient
暫時

transient
瞬時 暫態

transient
adj 1: of a mental act; causing effects outside the mind [synonym:
{transeunt}, {transient}] [ant: {immanent}, {subjective}]
2: lasting a very short time; "the ephemeral joys of childhood";
"a passing fancy"; "youth's transient beauty"; "love is
transitory but it is eternal"; "fugacious blossoms" [synonym:
{ephemeral}, {passing}, {short-lived}, {transient},
{transitory}, {fugacious}]
n 1: one who stays for only a short time; "transient laborers"
2: (physics) a short-lived oscillation in a system caused by a
sudden change of voltage or current or load

Transient \Tran"sient\, a. [L. transiens, -entis, p. pr. of
transire, transitum, to go or pass over. See {Trance}.]
1. Passing before the sight or perception, or, as it were,
moving over or across a space or scene viewed, and then
disappearing; hence, of short duration; not permanent; not
lasting or durable; not stationary; passing; fleeting;
brief; transitory; as, transient pleasure. "Measured this
transient world." --Milton.
[1913 Webster]

2. Hasty; momentary; imperfect; brief; as, a transient view
of a landscape.
[1913 Webster]

3. Staying for a short time; not regular or permanent; as, a
transient guest; transient boarders. [Colloq. U. S.]
[1913 Webster]

Syn: {Transient}, {Transitory}, {Fleeting}.

Usage: Transient represents a thing as brief at the best;
transitory, as liable at any moment to pass away.
Fleeting goes further, and represents it as in the act
of taking its flight. Life is transient; its joys are
transitory; its hours are fleeting.
[1913 Webster]

What is loose love? A transient gust. --Pope
[1913 Webster]

If [we love] transitory things, which soon
decay,
Age must be loveliest at the latest day.
--Donne.
[1913 Webster]

O fleeting joys
Of Paradise, dear bought with lasting woes.
--Milton.
[1913 Webster] -- {Tran"sient*ly}, adv. --
{Tran"sient*ness}, n.
[1913 Webster]


Transient \Tran"sient\, n.
That which remains but for a brief time. --Glanvill.
[1913 Webster] Transilience

188 Moby Thesaurus words for "transient":
able to adapt, adaptable, adjustable, adventurer, alpinist,
alterable, alterative, arising, astronaut, board-and-roomer,
boarder, brief, brittle, camper, capricious, changeable, checkered,
circumforaneous, climber, comers and goers, coming, commuter,
compact, compendious, concise, corruptible, cosmopolite, cruiser,
curt, curtal, curtate, deciduous, decurtate, disappearing,
discursive, dissolving, divagatory, drifting, dying, emanating,
emanative, emanent, emergent, emerging, ephemeral, errant,
evanescent, evaporating, ever-changing, excursionist, explorer,
fading, fare, fickle, fleeting, flexible, flitting, floating,
fluid, fly-by-night, flying, footloose, footloose and fancy-free,
forthcoming, fragile, frail, fugacious, fugitive, gadding,
globe-girdler, globe-trotter, goer, gypsy-like, gypsyish, hajji,
impermanent, impetuous, impulsive, inconstant, instantaneous,
insubstantial, issuing, jet set, jet-setter, journeyer,
kaleidoscopic, landloping, lessee, little, lodger, low, malleable,
many-sided, mariner, meandering, melting, metamorphic, migrational,
migratory, mobile, modifiable, momentaneous, momentary, mortal,
mountaineer, movable, mutable, nomad, nomadic, nondurable,
nonpermanent, nonuniform, palmer, passenger, passer, passerby,
passing, pathfinder, paying guest, perishable, permutable, pilgrim,
pioneer, plastic, protean, proteiform, rambling, ranging, renter,
resilient, roaming, roomer, roving, rubberneck, rubbernecker,
rubbery, sailor, shifting, short, short and sweet, short-lived,
short-term, sightseer, sojourner, straggling, straphanger,
straying, strolling, subject to death, succinct, summary, supple,
surfacing, synoptic, temporal, temporary, temporary lodger, tenant,
tourer, tourist, trailblazer, trailbreaker, traipsing, transeunt,
transient guest, transitive, transitory, transmigratory, traveler,
trekker, tripper, underlessee, undurable, unenduring, unstable,
vagabond, vagrant, vanishing, variable, viator, visiting fireman,
volatile, voortrekker, voyager, voyageur, wandering, wayfarer,
world-traveler

請選擇你想看的字典辭典:
單詞字典翻譯
transient查看 transient 在Google字典中的解釋Google英翻中〔查看〕
transient查看 transient 在Yahoo字典中的解釋Yahoo英翻中〔查看〕





安裝中文字典英文字典查詢工具!


中文字典英文字典工具:
選擇顏色:
輸入中英文單字

































































英文字典中文字典相關資料:
  • Why does JPA have a @Transient annotation? - Stack Overflow
    The transient keyword is a stronger condition than @Transient: If a field uses the transient keyword, that field will not be serialized when the object is converted to a byte stream Furthermore, since JPA treats fields marked with the transient keyword as having the @Transient annotation, the field will not be persisted by JPA either
  • c# - Configuring Dbcontext as Transient - Stack Overflow
    By default the DbContext is transient and hence valid for the duration of the request and all services (not only the controller) will receive the same instance of it If something goes wrong, you can just roll it back not issue an SaveChanges command With transient you lose that, each service will have its own instance of DbContext –
  • Why use the `transient` keyword in java? - Stack Overflow
    transient is used to specify which properties of an object will not be saved or serialised For example, when saving an object to a file, transient specifies which properties or attributes will not be saved to that file when that object is saved to a file
  • Why does Java have transient fields? - Stack Overflow
    The transient keyword in Java is used to indicate that a field should not be part of the serialization (which means saved, like to a file) process From the Java Language Specification, Java SE 7 Edition, Section 8 3 1 3 transient Fields: Variables may be marked transient to indicate that they are not part of the persistent state of an object
  • What does the keyword transient mean in Java? [duplicate]
    Member variables marked by the java transient keyword are not transferred, they are lost intentionally Example from there, slightly modified (thanks @pgras): public class Foo implements Serializable { private String saveMe; private transient String dontSaveMe; private transient String password;
  • java - How does marking a field as transient make it possible to . . .
    transient doesn't disable serialization altogether; it just marks members that won't be serialized It's typically used for stuff that would be incorrect or irrelevant when the object is unserialized, or stuff that it'd be less-than-safe to store (passwords, decrypted data, that sort of thing), or non-serializable stuff that could be easily reconstructed
  • c# - AddTransient, AddScoped and AddSingleton Services Differences . . .
    Transient: In transient, new object instances will be injected in a single request and response Below is a snapshot image where I displayed GUID values Scoped: In scoped, the same object instance will be injected in a single request and response
  • java - Serializable and transient - Stack Overflow
    The transient keyword can be used to specify that an attribute does not need to be serialised, for instance because it is a derived attribute See also this reply to a similar question on SO and this one about designing marker interfaces
  • java - Qual a diferença entre o uso de @Transient e transient em um . . .
    A anotação @Transient pode ser utilizada no atributo de uma classe, ou em um método get, no seu caso getIdValidacao() A forma como é estabelecida tem relação com uma anotação à classe, sendo @Access(AccessType FIELD) para estar em um atributo, ou @Access(AccessType PROPERTY) para método
  • c# - When to use Singleton vs Transient vs Request using Ninject and . . .
    On the same basis, transient scope is the most straightforward default (and that's why Ninject 2 makes it so) - request scope should only come into the equation when something needs to be shared for performance reasons, etc (or because that's simply the context of the sharing [as mentioned in the other answer])





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

|中文姓名英譯,姓名翻譯 |简体中文英文字典