英文字典中文字典


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







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

lantern    音标拼音: [l'æntɚn]
n. 灯笼,提灯,航标灯
vt. 装上提灯

灯笼,提灯,航标灯装上提灯

lantern
n 1: light in a transparent protective case

Lantern \Lan"tern\ (l[a^]n"t[~e]rn), n. [F. lanterne, L.
lanterna, laterna, from Gr. lampth`r light, torch. See
{Lamp}.]
1. Something inclosing a light, and protecting it from wind,
rain, etc.; -- sometimes portable, as a closed vessel or
case of horn, perforated tin, glass, oiled paper, or other
material, having a lamp or candle within; sometimes fixed,
as the glazed inclosure of a street light, or of a
lighthouse light.
[1913 Webster]

2. (Arch.)
(a) An open structure of light material set upon a roof,
to give light and air to the interior.
(b) A cage or open chamber of rich architecture, open
below into the building or tower which it crowns.
(c) A smaller and secondary cupola crowning a larger one,
for ornament, or to admit light; such as the lantern
of the cupola of the Capitol at Washington, or that of
the Florence cathedral.
[1913 Webster]

3. (Mach.) A lantern pinion or trundle wheel. See {Lantern
pinion} (below).
[1913 Webster]

4. (Steam Engine) A kind of cage inserted in a stuffing box
and surrounding a piston rod, to separate the packing into
two parts and form a chamber between for the reception of
steam, etc.; -- called also {lantern brass}.
[1913 Webster]

5. (Founding) A perforated barrel to form a core upon.
[1913 Webster]

6. (Zool.) See {Aristotle's lantern}.
[1913 Webster]

Note: Fig. 1 represents a hand lantern; fig. 2, an arm
lantern; fig. 3, a breast lantern; -- so named from the
positions in which they are carried.
[1913 Webster]

{Dark lantern}, a lantern with a single opening, which may be
closed so as to conceal the light; -- called also
{bull's-eye}.

{Lantern jaws}, long, thin jaws; hence, a thin visage.

{Lantern pinion}, {Lantern wheel} (Mach.), a kind of pinion
or wheel having cylindrical bars or trundles, instead of
teeth, inserted at their ends in two parallel disks or
plates; -- so called as resembling a lantern in shape; --
called also {wallower}, or {trundle}.

{Lantern shell} (Zool.), any translucent, marine, bivalve
shell of the genus {Anatina}, and allied genera.

{Magic lantern}, an optical instrument consisting of a case
inclosing a light, and having suitable lenses in a lateral
tube, for throwing upon a screen, in a darkened room or
the like, greatly magnified pictures from slides placed in
the focus of the outer lens.
[1913 Webster]


Lantern \Lan"tern\, v. t. [imp. & p. p. {Lanterned}; p. pr. &
vb. n. {Lanterning}.] [Cf. F. lanterner to hang at the lamp
post, fr. lanterne. See {Lantern}.]
To furnish with a lantern; as, to lantern a lighthouse.
[1913 Webster]

103 Moby Thesaurus words for "lantern":
antenna tower, barbican, bay, bay window, belfry, bell tower,
bow window, campanile, candle, casement, casement window, ceiling,
colossus, column, cupola, derrick, dome, eaves,
electric light bulb, fan window, fanlight, fire, fire tower, flame,
glim, grille, housetop, illuminant, illuminator, incandescent body,
lamp, lancet window, lattice, light, light bulb, light source,
lighthouse, louver window, luminant, luminary, martello,
martello tower, mast, match, minaret, monument, moon, obelisk,
observation tower, oriel, overhead, pagoda, pane, penthouse,
picture window, pilaster, pillar, pinnacle, plafond, pole, port,
porthole, pylon, pyramid, ridgepole, roof, roof garden, roof-deck,
roofage, roofing, roofpole, rooftop, rooftree, rose window, shaft,
shingles, skylight, skyscraper, slates, source of light, spire,
standpipe, stars, steeple, stupa, sun, taper, television mast,
tiles, top, tope, torch, tour, tower, transom, turret, water tower,
wicket, windmill tower, window, window bay, window glass,
windowpane


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





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


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

































































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


  • An introduction to widget testing - Flutter
    In the introduction to unit testing recipe, you learned how to test Dart classes using the test package To test widget classes, you need a few additional tools provided by the flutter_test package, which ships with the Flutter SDK The flutter_test package provides the following tools for testing widgets: The WidgetTester allows building and interacting with widgets in a test environment The
  • Testing Flutter apps
    Widget tests A widget test (in other UI frameworks referred to as component test) tests a single widget The goal of a widget test is to verify that the widget's UI looks and interacts as expected Testing a widget involves multiple classes and requires a test environment that provides the appropriate widget lifecycle context
  • Flutter
    > How to handle scrolling in a widget test Many apps feature lists of content, from email clients to music apps and beyond To verify that lists contain the expected content using widget tests, you need a way to scroll through lists to search for particular items To scroll through lists via integration tests, use the methods provided by the [`WidgetTester`][] class, which is included in the
  • Tap, drag, and enter text - Flutter
    In the test environment, Flutter doesn't automatically rebuild widgets when the state changes To ensure that the widget tree is rebuilt after simulating a user interaction, call the pump() or pumpAndSettle() methods provided by the WidgetTester This recipe uses the following steps: Create a widget to test Enter text in the text field
  • Handle scrolling - Flutter
    How to handle scrolling in a widget test Now, you can write a test In this example, scroll through the list of items and verify that a particular item exists in the list The WidgetTester class provides the scrollUntilVisible() method, which scrolls through a list until a specific widget is visible This is useful because the height of the items in the list can change depending on the device
  • Accessibility testing - Flutter
    Testing accessibility on mobile Test your app using Flutter's Accessibility Guideline API This API checks if your app's UI meets Flutter's accessibility recommendations These cover recommendations for text contrast, target size, and target labels The following snippet shows how to use the Guideline API on a sample widget named AccessibleApp:
  • Find widgets - Flutter
    During a flutter run session on a widget test, you can also interactively tap parts of the screen for the Flutter tool to print the suggested Finder This recipe looks at the find constant provided by the flutter_test package, and demonstrates how to work with some of the Finders it provides
  • Visual Studio Code - Flutter
    Flutter Property Editor The Flutter Property Editor is a powerful tool provided by the Flutter extension that lets you view and modify widget properties directly from its visual interface
  • Testing each layer - Flutter
    Testing the UI layer One way to determine whether your architecture is sound is considering how easy (or difficult) the application is to test Because view models and views have well-defined inputs, their dependencies can easily be mocked or faked, and unit tests are easily written





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