英文字典中文字典


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







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

agnomen    
n. 第四附加名;绰号的一种

第四附加名;绰号的一种

agnomen
n 1: an additional name or an epithet appended to a name (as in
`Ferdinand the Great')

Name \Name\ (n[=a]m), n. [AS. nama; akin to D. naam, OS. & OHG.
namo, G. name, Icel. nafn, for namn, Dan. navn, Sw. namn,
Goth. nam[=o], L. nomen (perh. influenced by noscere,
gnoscere, to learn to know), Gr. 'o`mona, Scr. n[=a]man.
[root]267. Cf. {Anonymous}, {Ignominy}, {Misnomer},
{Nominal}, {Noun}.]
1. The title by which any person or thing is known or
designated; a distinctive specific appellation, whether of
an individual or a class.
[1913 Webster]

Whatsoever Adam called every living creature, that
was the name thereof. --Gen. ii. 19.
[1913 Webster]

What's in a name? That which we call a rose
By any other name would smell as sweet. --Shak.
[1913 Webster]

2. A descriptive or qualifying appellation given to a person
or thing, on account of a character or acts.
[1913 Webster]

His name shall be called Wonderful, Counsellor, The
mighty God, The everlasting Father, The Prince of
Peace. --Is. ix. 6.
[1913 Webster]

3. Reputed character; reputation, good or bad; estimation;
fame; especially, illustrious character or fame; honorable
estimation; distinction.
[1913 Webster]

What men of name resort to him? --Shak.
[1913 Webster]

Far above . . . every name that is named, not only
in this world, but also in that which is to come.
--Eph. i. 21.
[1913 Webster]

I will get me a name and honor in the kingdom. --1
Macc. iii. 14.
[1913 Webster]

He hath brought up an evil name upon a virgin.
--Deut. xxii.
19.
[1913 Webster]

The king's army . . . had left no good name behind.
--Clarendon.
[1913 Webster]

4. Those of a certain name; a race; a family.
[1913 Webster]

The ministers of the republic, mortal enemies of his
name, came every day to pay their feigned
civilities. --Motley.
[1913 Webster]

5. A person, an individual. [Poetic]
[1913 Webster]

They list with women each degenerate name. --Dryden.
[1913 Webster]

{Christian name}.
(a) The name a person receives at baptism, as
distinguished from {surname}; baptismal name; in
western countries, it is also called a {first name}.
(b) A given name, whether received at baptism or not.

{Given name}. See under {Given}.

{In name}, in profession, or by title only; not in reality;
as, a friend in name.

{In the name of}.
(a) In behalf of; by the authority of. " I charge you in
the duke's name to obey me." --Shak.
(b) In the represented or assumed character of. "I'll to
him again in name of Brook." --Shak.

{Name plate}, a plate as of metal, glass, etc., having a name
upon it, as a sign; a doorplate.

{Pen name}, a name assumed by an author; a pseudonym or {nom
de plume}. --Bayard Taylor.

{Proper name} (Gram.), a name applied to a particular person,
place, or thing.

{To call names}, to apply opprobrious epithets to; to call by
reproachful appellations.

{To take a name in vain}, to use a name lightly or profanely;
to use a name in making flippant or dishonest oaths. --Ex.
xx. 7.
[1913 Webster]

Syn: Appellation; title; designation; cognomen; denomination;
epithet.

Usage: {Name}, {Appellation}, {Title}, {Denomination}. Name
is generic, denoting that combination of sounds or
letters by which a person or thing is known and
distinguished. Appellation, although sometimes put for
name simply, denotes, more properly, a descriptive
term (called also {agnomen} or {cognomen}), used by
way of marking some individual peculiarity or
characteristic; as, Charles the Bold, Philip the
Stammerer. A title is a term employed to point out
one's rank, office, etc.; as, the Duke of Bedford,
Paul the Apostle, etc. Denomination is to particular
bodies what appellation is to individuals; thus, the
church of Christ is divided into different
denominations, as Congregationalists, Episcopalians,
Presbyterians, etc.
[1913 Webster]


Agnomen \Ag*no"men\ ([a^]g*n[=o]"m[e^]n), n. [L.; ad nomen
name.]
1. An additional or fourth name given by the Romans, on
account of some remarkable exploit or event; as, Publius
Caius Scipio Africanus.
[1913 Webster]

2. An additional name, or an epithet appended to a name; as,
Aristides the Just.
[1913 Webster]


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





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


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

































































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


  • What is JSON and what is it used for? - Stack Overflow
    JSON (JavaScript Object Notation) is a lightweight format that is used for data interchanging It is based on a subset of JavaScript language (the way objects are built in JavaScript) As stated in the MDN, some JavaScript is not JSON, and some JSON is not JavaScript An example of where this is used is web services responses In the 'old' days, web services used XML as their primary data
  • Which JSON content type do I use? - Stack Overflow
    Of course, the correct MIME media type for JSON is application json, but it's necessary to realize what type of data is expected in your application For example, I use Java Ext GWT and the server response must go as text html but contains JSON data
  • Is there any standard for JSON API response format?
    Do standards or best practices exist for structuring JSON responses from an API? Obviously, every application's data is different, so that much I'm not concerned with, but rather the "response
  • Can comments be used in JSON? - Stack Overflow
    JSON is used a lot for application data and configuration settings, so comments are necessary now The "official spec" is a nice idea, but it's insufficient and obsolete, so too bad Minify your JSON if you're concerned about payload size or performance
  • How to escape special characters in building a JSON string?
    356 A JSON string must be double-quoted, according to the specs, so you don't need to escape ' If you have to use special character in your JSON string, you can escape it using \ character See this list of special character used in JSON :
  • pretty-print JSON using JavaScript - Stack Overflow
    How can I display JSON in an easy-to-read (for human readers) format? I'm looking primarily for indentation and whitespace, with perhaps even colors font-styles etc
  • JSON. stringify returns [object Object] instead of the contents of . . .
    Here I'm creating a JavaScript object and converting it to a JSON string, but JSON stringify returns " [object Object]" in this case, instead of displaying the contents of the object
  • How to parse JSON in Java - Stack Overflow
    java's built in JSON libraries are the quickets way to do so, but in my experience GSON is the best library for parsing a JSON into a POJO painlessly
  • How to style a JSON block in Github Wiki? - Stack Overflow
    ```json Here goes your json object definition ``` Note: This won't prettify the json representation To do so, one can previously rely on an external service such as jsbeautifier org and paste the prettified result in the wiki
  • Representing null in JSON - Stack Overflow
    What is the preferred method for returning null values in JSON? Is there a different preference for primitives? For example, if my object on the server has an Integer called quot;myCount quot; wit





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