英文字典中文字典


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







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

orchard    音标拼音: ['ɔrtʃɚd]
n. 果园,果树

果园,果树

orchard
n 1: garden consisting of a small cultivated wood without
undergrowth [synonym: {grove}, {woodlet}, {orchard},
{plantation}]

Orchard \Or"chard\, n. [AS. ortgeard, wyrtgeard, lit., wortyard,
i. e., a yard for herbs; wyrt herb geard yard. See {Wort},
{Yard} inclosure.]
1. A garden. [Obs.]
[1913 Webster]

2. An inclosure containing fruit trees; also, the fruit
trees, collectively; -- used especially of apples,
peaches, pears, cherries, plums, or the like, less
frequently of nutbearing trees and of sugar maple trees.
[1913 Webster]

{Orchard grass} (Bot.), a tall coarse grass ({Dactylis
glomerata}), introduced into the United States from
Europe. It grows usually in shady places, and is of value
for forage and hay.

{Orchard house} (Hort.), a glazed structure in which fruit
trees are reared in pots.

{Orchard oriole} (Zool.), a bright-colored American oriole
({Icterus spurius}), which frequents orchards. It is
smaller and darker thah the Baltimore oriole.
[1913 Webster]

61 Moby Thesaurus words for "orchard":
arable land, barnyard, barton, bocage, bosk, cattle ranch,
chicken farm, collective farm, coppice, copse, cotton plantation,
croft, dairy farm, demesne, demesne farm, dry farm, dude ranch,
factory farm, fallow, farm, farmery, farmhold, farmland, farmplace,
farmstead, farmyard, fruit farm, fur farm, grain farm, grange,
grassland, grove, hacienda, holt, homecroft, homefarm, homestead,
hurst, kibbutz, kolkhoz, location, mains, manor farm, pasture, pen,
plantation, poultry farm, ranch, rancheria, rancho, shaw,
sheep farm, spinney, station, steading, stock farm, toft, tope,
truck farm, wood lot, woodlet

Orchard, NE -- U.S. village in Nebraska
Population (2000): 391
Housing Units (2000): 208
Land area (2000): 0.417248 sq. miles (1.080668 sq. km)
Water area (2000): 0.000000 sq. miles (0.000000 sq. km)
Total area (2000): 0.417248 sq. miles (1.080668 sq. km)
FIPS code: 37210
Located within: Nebraska (NE), FIPS 31
Location: 42.336036 N, 98.240091 W
ZIP Codes (1990): 68764
Note: some ZIP codes may be omitted esp. for suburbs.
Headwords:
Orchard, NE
Orchard


Orchard, IA -- U.S. city in Iowa
Population (2000): 88
Housing Units (2000): 35
Land area (2000): 0.088468 sq. miles (0.229132 sq. km)
Water area (2000): 0.000000 sq. miles (0.000000 sq. km)
Total area (2000): 0.088468 sq. miles (0.229132 sq. km)
FIPS code: 59520
Located within: Iowa (IA), FIPS 19
Location: 43.226995 N, 92.774567 W
ZIP Codes (1990): 50460
Note: some ZIP codes may be omitted esp. for suburbs.
Headwords:
Orchard, IA
Orchard


Orchard, TX -- U.S. city in Texas
Population (2000): 408
Housing Units (2000): 156
Land area (2000): 0.378147 sq. miles (0.979395 sq. km)
Water area (2000): 0.000000 sq. miles (0.000000 sq. km)
Total area (2000): 0.378147 sq. miles (0.979395 sq. km)
FIPS code: 54192
Located within: Texas (TX), FIPS 48
Location: 29.602015 N, 95.968821 W
ZIP Codes (1990):
Note: some ZIP codes may be omitted esp. for suburbs.
Headwords:
Orchard, TX
Orchard


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





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


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

































































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


  • Placeholder Query Data | TanStack Query React Docs
    What is placeholder data? Placeholder data allows a query to behave as if it already has data, similar to the initialData option, but the data is not persisted to the cache This comes in handy for situations where you have enough partial (or fake) data to render the query successfully while the actual data is fetched in the background
  • Polling simplified, with React Query (useQuery) - Medium
    We can use useQuery to fetch data from the network and cache it In this article, we will see how useQuery can ease our job in polling and refetching APIs conditionally with a small example We
  • How to utilize useQuery for polling background data fetching - TecForFun
    React-Query’s useQuery hook provides several powerful options that can help you build flexible and efficient data-fetching solutions in your React applications Whether you need to poll an API at a regular interval, fetch data in the background, or transform the data before it’s returned to the component, options like refetchInterval
  • Ability for Form Placeholder to poll · filamentphp filament . . . - GitHub
    We make use of Placeholder in forms, to show data related to the entity For example let's say we have an EditUser page and form We are using Placeholder as an example while viewing this page, to show some interesting live updating status about some thing based on this user
  • Placeholder Query Data | React Query | TanStack
    Does this replace [Redux, MobX, etc]? Migrating to React Query 3 Examples
  • useQuery | TanStack Query React Docs
    The query key to use for this query The query key will be hashed into a stable hash See Query Keys for more information The query will automatically update when this key changes (as long as enabled is not set to false) queryFn: (context: QueryFunctionContext) => Promise<TData>
  • mysql - SQL - Using placeholders to retrieve rows that are LIKE the . . .
    You must not put the ? parameter placeholders inside a quoted SQL string literals in your query Parameters are an alternative to using string literals I would write the query like this: SELECT DISTINCT r restname FROM restaurants r JOIN food f ON f restid = r restid JOIN drinks d ON d restid = r restid WHERE f foodcategory LIKE ?
  • Placeholder Query Data | Svelte Query | SvelteStack
    There are a few ways to supply placeholder data for a query to the cache before you need it: Declaratively: Provide placeholderData to a query to prepopulate its cache if empty; Imperatively: Prefetch or fetch the data using queryClient and the placeholderData option; Placeholder Data as a Value
  • jQuery, simple polling example - Stack Overflow
    I'm learning jQuery, and I'm trying to find a simple code example that will poll an API for a condition (ie, request a webpage every few seconds and process the results) I'm familiar with how to do AJAX in jQuery, I just can't seem to find the "proper" way of getting it to execute on a "timer"
  • OpenPoll - OpenAPI Quick Poll Specification by Polling. com
    With this API, you can create multiple types of polls (multiple choice, checkbox, ranking, text input, star rating) programmatically using URL-encoded query parameters The poll is rendered as a publicly accessible web page





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