英文字典中文字典


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







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

spangle    音标拼音: [sp'æŋgəl]
n. 亮晶晶的小东西
vi.
vt. (使)闪烁

亮晶晶的小东西(使)闪烁

spangle
n 1: adornment consisting of a small piece of shiny material
used to decorate clothing [synonym: {sequin}, {spangle},
{diamante}]
v 1: glitter as if covered with spangles
2: decorate with spangles; "the star-spangled banner" [synonym:
{spangle}, {bespangle}]

Spangle \Span"gle\, v. i.
To show brilliant spots or points; to glisten; to glitter.
[1913 Webster]

Some men by feigning words as dark as mine
Make truth to spangle, and its rays to shine. --Bunyan.
[1913 Webster]


Spangle \Span"gle\, n. [OE. spangel, dim. of AS. spange. See
{Spang} a spangle.]
1. A small plate or boss of shining metal; something
brilliant used as an ornament, especially when stitched on
the dress.
[1913 Webster]

2. Figuratively, any little thing that sparkless. "The rich
spangles that adorn the sky." --Waller.
[1913 Webster]

{Oak spangle}. See under {Oak}.
[1913 Webster]


Spangle \Span"gle\, v. t. [imp. & p. p. {Spangled}; p. pr. & vb.
n. {Spangling}.]
To set or sprinkle with, or as with, spangles; to adorn with
small, distinct, brilliant bodies; as, a spangled
breastplate. --Donne.
[1913 Webster]

What stars do spangle heaven with such beauty? --Shak.
[1913 Webster]

{Spangled coquette} (Zool.), a tropical humming bird
({Lophornis reginae}). See {Coquette}, 2.
[1913 Webster]

87 Moby Thesaurus words for "spangle":
adorn, band, bar, bead, bejewel, beribbon, bespangle, bespeckle,
bespot, blink, blinking, blotch, check, checker, coruscate,
coruscation, dapple, decorate, diamond, dot, engrave, feather,
figure, filigree, firefly, flag, flake, fleck, flounce, flower,
freckle, garland, gem, gleam, glimmer, glimmering, glisk, glisten,
glister, glitter, glittering, glowworm, harlequin, illuminate,
iris, jewel, maculate, marble, marbleize, motley, mottle, ornament,
paint, pepper, plume, polychrome, polychromize, rainbow, ribbon,
scintilla, scintillate, scintillation, shimmer, shimmering, spark,
sparkle, speck, speckle, splotch, spot, sprinkle, stigmatize,
stipple, streak, striate, stripe, stroboscopic light, stud, tattoo,
tessellate, tinsel, trim, twinkle, twinkling, variegate, vein,
wreathe

spangle: n. [UK] The singular of bells and whistles. See
also spungle.


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





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


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

































































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


  • pixiv (p站)2021年如何上?
    为防止部分同学撞车,特声明,此p站为pixiv站,而非另外一个p***hub站(部分想歪的了同学,请自觉面壁~) 喜欢二次元的朋友,一定不会陌生P站的大名,那么怎么上pixiv站? pixiv怎么登陆?pixiv如何注册? 接下来,为你解惑~ 第一节:什么是p站 一切为创作者服务 pixiv是一个以插图、漫画和小说
  • Html: What is the correct order of lt;a gt; and lt;p gt; tags?
    I would say the second one, than the <p> is not inheriting attributes of <a> and keeping it's original formatting
  • html - When to use lt;p gt; vs. lt;br gt; - Stack Overflow
    Learn when to use <p> for paragraphs and <br> for line breaks in HTML on Stack Overflow
  • 如何理解C语言中的**p和*p [ ]和 (*p) [ ]? - 知乎
    p=*name+i 性质就变了,就是把name所指向的内容加1,然后赋值给p,name作为一个指针指向的是 字符串数组,还好字符串数组也是指针(指针与数组在C语言里面都按照指针处理),所以赋值可以成功,但是会给出编译警告,因为毕竟他们不是相同类型,p是指向指针
  • %p Format specifier in c - Stack Overflow
    If this is what you are asking, %p and %Fp print out a pointer, specifically the address to which the pointer refers, and since it is printing out a part of your computer's architecture, it does so in Hexadecimal In C, you can cast between a pointer and an int, since a pointer is just a 32-bit or 64-bit number (depending on machine architecture) referring to the aforementioned chunk of memory
  • pointers - C++ - *p vs p vs p - Stack Overflow
    5 I am still struggling to understand the difference between *p, p, and p From my understanding, * can be thought of "value pointed by", and as "adress of" In other words, * holds the value while holds the adress If this is true, then what is the distinction between *p and p? Doesn't p hold the value of something, just like *p?
  • c - difference between *p++ and ++*p - Stack Overflow
    This increments value of variable pointed by p p points to a so value of a incremented to 6 and first printf() outputs: 6 (2): Whereas, in *p++ because of postfix ++, printf() first prints value of *p that is 6 from previous expression then p increment to next location of a
  • What is the difference between lt;p gt; and lt;div gt;? - Stack Overflow
    What is the difference between lt;p> and lt;div>? Can they be used interchangeably? What are the applications?
  • Why is the format of %p and %x different in a format string?
    3 No %p expects the argument to be of type (void *) and prints out the address Whereas %x converts an unsigned int to unsigned hexadecimal and prints out the result And coming to what %p does is implementation defined but the standard just says that %p expects void* argument else the behavior is undefined
  • c# - What does this regexp mean - \p {Lu}? - Stack Overflow
    These are considered Unicode properties The Unicode property \p{L} — shorthand for \p{Letter} will match any kind of letter from any language Therefore, \p{Lu} will match an uppercase letter that has a lowercase variant And, the opposite \p{Ll} will match a lowercase letter that has an uppercase variant Concisely, this would match any lowercase uppercase that has a variant from any





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