英文字典中文字典


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







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

riser    音标拼音: [r'ɑɪzɚ]
n. 起床者,叛徒,起义者,竖板

起床者,叛徒,起义者,竖板

riser
n 1: a person who rises (especially from bed); "he's usually a
late riser"
2: a vertical pipe in a building [synonym: {riser}, {riser pipe},
{riser pipeline}, {riser main}]
3: structural member consisting of the vertical part of a stair
or step

Shrinking \Shrink"ing\,
a. & n. from {Shrink}.
[1913 Webster]

{Shrinking head} (Founding), a body of molten metal connected
with a mold for the purpose of supplying metal to
compensate for the shrinkage of the casting; -- called
also {sinking head}, and {riser}.
[1913 Webster]


Riser \Ris"er\, n.
1. One who rises; as, an early riser.
[1913 Webster]

2. (Arch.)
(a) The upright piece of a step, from tread to tread.
Hence:
(b) Any small upright face, as of a seat, platform,
veranda, or the like.
[1913 Webster]

3. (Mining) A shaft excavated from below upward.
[1913 Webster]

4. (Founding) A feed head. See under {Feed}, n.
[1913 Webster]


Feed \Feed\, n.
1. That which is eaten; esp., food for beasts; fodder;
pasture; hay; grain, ground or whole; as, the best feed
for sheep.
[1913 Webster]

2. A grazing or pasture ground. --Shak.
[1913 Webster]

3. An allowance of provender given to a horse, cow, etc.; a
meal; as, a feed of corn or oats.
[1913 Webster]

4. A meal, or the act of eating. [R.]
[1913 Webster]

For such pleasure till that hour
At feed or fountain never had I found. --Milton.
[1913 Webster]

5. The water supplied to steam boilers.
[1913 Webster]

6. (Mach.)
(a) The motion, or act, of carrying forward the stuff to
be operated upon, as cloth to the needle in a sewing
machine; or of producing progressive operation upon
any material or object in a machine, as, in a turning
lathe, by moving the cutting tool along or in the
work.
(b) The supply of material to a machine, as water to a
steam boiler, coal to a furnace, or grain to a run of
stones.
(c) The mechanism by which the action of feeding is
produced; a feed motion.
[1913 Webster]

{Feed bag}, a nose bag containing feed for a horse or mule.


{Feed cloth}, an apron for leading cotton, wool, or other
fiber, into a machine, as for carding, etc.

{Feed door}, a door to a furnace, by which to supply coal.

{Feed head}.
(a) A cistern for feeding water by gravity to a steam
boiler.
(b) (Founding) An excess of metal above a mold, which
serves to render the casting more compact by its
pressure; -- also called a {riser}, {deadhead}, or
simply {feed} or {head} --Knight.

{Feed heater}.
(a) (Steam Engine) A vessel in which the feed water for
the boiler is heated, usually by exhaust steam.
(b) A boiler or kettle in which is heated food for stock.


{Feed motion}, or {Feed gear} (Mach.), the train of mechanism
that gives motion to the part that directly produces the
feed in a machine.

{Feed pipe}, a pipe for supplying the boiler of a steam
engine, etc., with water.

{Feed pump}, a force pump for supplying water to a steam
boiler, etc.

{Feed regulator}, a device for graduating the operation of a
feeder. --Knight.

{Feed screw}, in lathes, a long screw employed to impart a
regular motion to a tool rest or tool, or to the work.

{Feed water}, water supplied to a steam boiler, etc.

{Feed wheel} (Mach.), a kind of feeder. See {Feeder}, n., 8.
[1913 Webster]


请选择你想看的字典辞典:
单词字典翻译
riser查看 riser 在百度字典中的解释百度英翻中〔查看〕
riser查看 riser 在Google字典中的解释Google英翻中〔查看〕
riser查看 riser 在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
  • 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