英文字典中文字典


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







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

radiate    音标拼音: [r'ediət] [r'edi,et]
vt. 放射,散发,辐射,传播,广播
vi. 发光,辐射,流露
a. 有射线的,辐射状的

放射,散发,辐射,传播,广播发光,辐射,流露有射线的,辐射状的

radiate
adj 1: arranged like rays or radii; radiating from a common
center; "radial symmetry"; "a starlike or stellate
arrangement of petals"; "many cities show a radial
pattern of main highways" [synonym: {radial}, {stellate},
{radiate}]
2: having rays or ray-like parts as in the flower heads of
daisies
v 1: send out rays or waves; "The sun radiates heat"
2: send out real or metaphoric rays; "She radiates happiness"
3: extend or spread outward from a center or focus or inward
towards a center; "spokes radiate from the hub of the wheel";
"This plants radiate spines in all directions" [synonym:
{radiate}, {ray}]
4: have a complexion with a strong bright color, such as red or
pink; "Her face glowed when she came out of the sauna" [synonym:
{glow}, {beam}, {radiate}, {shine}]
5: cause to be seen by emitting light as if in rays; "The sun is
radiating"
6: experience a feeling of well-being or happiness, as from good
health or an intense emotion; "She was beaming with joy";
"Her face radiated with happiness" [synonym: {glow}, {beam},
{radiate}, {shine}]
7: issue or emerge in rays or waves; "Heat radiated from the
metal box"
8: spread into new habitats and produce variety or variegate;
"The plants on this island diversified" [synonym: {diversify},
{radiate}]

Radiate \Ra"di*ate\ (r[=a]"d[i^]*[=a]t), v. i. [imp. & p. p.
{Radiated} (r[=a]"d[i^]*[=a]`t[e^]d); p. pr. & vb. n.
{Radiating}.] [L. radiatus, p. p. of radiare to furnish with
spokes or rays, to radiate, fr. radius ray. See {Radius},
{Ray} a divergent line.]
1. To emit rays; to be radiant; to shine.
[1913 Webster]

Virtues shine more clear
In them [kings], and radiate like the sun at noon.
--Howell.
[1913 Webster]

2. To proceed in direct lines from a point or surface; to
issue in rays, as light or heat.
[1913 Webster]

Light radiates from luminous bodies directly to our
eyes. --Locke.
[1913 Webster]


Radiate \Ra"di*ate\, v. t.
1. To emit or send out in direct lines from a point or
points; as, to radiate heat.
[1913 Webster]

2. To enlighten; to illuminate; to shed light or brightness
on; to irradiate. [R.]
[1913 Webster]


Radiate \Ra"di*ate\ (r[=a]"d[i^]*[asl]t), a. [L. radiatus, p.
p.]
1. Having rays or parts diverging from a center; radiated;
as, a radiate crystal.
[1913 Webster]

2. (Bot.) Having in a capitulum large ray florets which are
unlike the disk florets, as in the aster, daisy, etc.
[1913 Webster]

3. (Zool.) Belonging to the Radiata.
[1913 Webster]


Radiate \Ra"di*ate\, n. (Zool.)
One of the Radiata.
[1913 Webster]

82 Moby Thesaurus words for "radiate":
be bright, beacon, beam, bedazzle, bestrew, blaze, blind,
broadcast, burn, circulate, circumfuse, coruscate, daze, dazzle,
deal out, diffract, diffuse, diffuse light, dispense, disperse,
dispread, disseminate, distribute, diverge, emanate, emit, fan out,
flame, flare, flash, fulgurate, give light, give off, give out,
glance, glare, gleam, glint, glisten, glitter, glow, incandesce,
irradiate, issue, jam, luster, newscast, overscatter, oversow,
overspread, propagate, publish, radio, radiobroadcast, ray, retail,
scatter, scintillate, send, send out, send out rays, shed, shimmer,
shine, shine brightly, shoot, shoot out rays, shortwave, sign off,
sign on, sow, sow broadcast, sparkle, splay, sportscast, spread,
spread out, strew, transmit, twinkle, utter, wireless



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


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

































































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


  • 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
  • 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
  • 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
  • JSON: why are forward slashes escaped? - Stack Overflow
    JSON stems from Javascript (JavaScript Object Notation), it only makes sense that it was originally adapted for use in Javascript Unfortunately, as with all things related to Javascript, it has gained widespread use in all kinds of places
  • . well-known appspecific com. chrome. devtools. json request
    This is a request made by Chrome's DevTools as part of the Automatic Workspace Folders feature: devservers can inform the developer tools running in the browser about the project folders that they are serving, and DevTools can automatically pick that up and connect to these folders during local debugging, and automatically disconnect these folders when the developer navigates somewhere else
  • Newest json Questions - Stack Overflow
    I am trying to fetch JSON data from an HTTP API and convert it into an in‑memory table in DolphinDB The JSON response is an array of objects, and I want to store it as a table where each object
  • 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
  • rest - How do I POST JSON data with cURL? - Stack Overflow
    I use Ubuntu and installed cURL on it I want to test my Spring REST application with cURL I wrote my POST code at the Java side However, I want to test it with cURL I am trying to post a JSON d
  • 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 :
  • 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





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