英文字典中文字典


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







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

overturn    音标拼音: ['ovɚt,ɚn]
n. 倾覆,破灭,革命
vt. 推翻,颠倒
vi. 翻倒

倾覆,破灭,革命推翻,颠倒翻倒

overturn
n 1: the act of upsetting something; "he was badly bruised by
the upset of his sled at a high speed" [synonym: {upset},
{overturn}, {turnover}]
2: an improbable and unexpected victory; "the biggest upset
since David beat Goliath" [synonym: {overturn}, {upset}]
v 1: turn from an upright or normal position; "The big vase
overturned"; "The canoe tumped over" [synonym: {overturn},
{turn over}, {tip over}, {tump over}]
2: cause to overturn from an upright or normal position; "The
cat knocked over the flower vase"; "the clumsy customer
turned over the vase"; "he tumped over his beer" [synonym:
{overturn}, {tip over}, {turn over}, {upset}, {knock over},
{bowl over}, {tump over}]
3: rule against; "The Republicans were overruled when the House
voted on the bill" [synonym: {overrule}, {overturn}, {override},
{overthrow}, {reverse}]
4: cause the downfall of; of rulers; "The Czar was overthrown";
"subvert the ruling class" [synonym: {overthrow}, {subvert},
{overturn}, {bring down}]
5: cancel officially; "He revoked the ban on smoking"; "lift an
embargo"; "vacate a death sentence" [synonym: {revoke}, {annul},
{lift}, {countermand}, {reverse}, {repeal}, {overturn},
{rescind}, {vacate}]
6: change radically; "E-mail revolutionized communication in
academe" [synonym: {revolutionize}, {revolutionise}, {overturn}]

Overturn \O`ver*turn"\, v. t. [imp. & p. p. {Overturned}; p. pr.
& vb. n. {Overturning}.]
1. To turn or throw from a basis, foundation, or position; to
overset; as, to overturn a carriage or a building.
[1913 Webster]

2. To subvert; to destroy; to overthrow.
[1913 Webster]

3. To overpower; to conquer. --Milton.
[1913 Webster]

Syn: To demolish; overthrow. See {Demolish}.
[1913 Webster]


Overturn \O"ver*turn`\, n.
The act off overturning, or the state of being overturned or
subverted; overthrow; as, an overturn of parties.
[1913 Webster]

163 Moby Thesaurus words for "overturn":
Waterloo, answer, answer conclusively, argue down, be lost,
beating, bloodless revolution, bouleversement, breakdown, breakup,
bring down, capsizal, capsize, careen, cataclysm, catastrophe,
clean slate, clean sweep, collapse, computer revolution, confound,
confute, conquering, conquest, contradict, controvert, convulsion,
counterrevolution, crash, crush, culbute, culbuter, deathblow,
debacle, deck, defeat, demolish, deny, depose, destruction,
dismiss, dispose of, down, downcast, downfall, downthrow, drubbing,
eject, failure, fall, finish, floor, founder, go down, hiding,
honeycomb, invert, keel, keel over, knock down, knock over,
lambasting, lathering, licking, mastery, nonplus, oust, ouster,
ousting, overcome, overcoming, overmaster, overmatch, overpower,
overset, overthrow, overturning, overwhelm, palace revolution,
parry, pitchpole, precipitation, prostrate, prostration,
put to silence, quietus, radical change, rebut, reduce to silence,
refute, reorganization, revolt, revolute, revolution,
revolutionary war, revolutionize, revulsion, ruin, sabotage, sap,
sap the foundations, scuttle, send flying, settle, shake-up,
shut up, silence, sink, smash, smash all opposition, somersault,
somerset, spasm, spill, squash, squelch, striking alteration,
subdual, subduing, subjugation, subversion, subvert, surmount,
sweeping change, tabula rasa, technological revolution, thrashing,
throw down, throw over, tip over, topple, topple over, toppling,
topsy-turvify, topsy-turvy, total change, transilience, trimming,
trip, trip up, trouncing, tumble, turn a somersault, turn over,
turn topsy-turvy, turn turtle, turn upside down, turnover,
undermine, undoing, unhorse, unseat, unseating, unthrone, upend,
upheaval, upset, upset the boat, upturn, vanquishment,
violent change, weaken, whipping


请选择你想看的字典辞典:
单词字典翻译
overturn查看 overturn 在百度字典中的解释百度英翻中〔查看〕
overturn查看 overturn 在Google字典中的解释Google英翻中〔查看〕
overturn查看 overturn 在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
    Testing a widget involves multiple classes and requires a test environment that provides the appropriate widget lifecycle context For example, the Widget being tested should be able to receive and respond to user actions and events, perform layout, and instantiate child widgets
  • Mock dependencies using Mockito - Flutter
    To use the mockito package, add it to the pubspec yaml file along with the flutter_test dependency in the dev_dependencies section This example also uses the http package, so define that dependency in the dependencies section mockito: 5 0 0 supports Dart's null safety thanks to code generation To run the required code generation, add the build_runner dependency in the dev_dependencies
  • Accessibility testing - Flutter
    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:
  • 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
  • Handle scrolling - 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 flutter
  • Capabilities policies - Flutter
    Test the branching code by mocking capabilities and policies so the widget tests don't need to change when capabilities or policies change Name the methods in your capabilities and policies classes based on what they are trying to branch, rather than on device type
  • 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
  • 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
  • Navigate to a new screen and back - Flutter
    In iOS, a route is equivalent to a ViewController In Flutter, a route is just a widget This recipe uses the Navigator to navigate to a new route The next few sections show how to navigate between two routes, using these steps: Create two routes Navigate to the second route using Navigator push() Return to the first route using Navigator pop()





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