英文字典中文字典


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







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

degrade    音标拼音: [dɪgr'ed]
vt.
vi. (使)降级,(使)堕落,(使)退化

(使)降级,(使)堕落,(使)退化

degrade
v 1: reduce the level of land, as by erosion [ant: {aggrade}]
2: reduce in worth or character, usually verbally; "She tends to
put down younger women colleagues"; "His critics took him
down after the lecture" [synonym: {take down}, {degrade},
{disgrace}, {demean}, {put down}]
3: lower the grade of something; reduce its worth [synonym:
{degrade}, {cheapen}]

Degrade \De*grade"\, v. t. [imp. & p. p. {Degraded}; p. pr. &
vb. n. {Degrading}.] [F. d['e]grader, LL. degradare, fr. L.
de- gradus step, degree. See {Grade}, and cf. {Degree}.]
1. To reduce from a higher to a lower rank or degree; to
lower in rank; to deprive of office or dignity; to strip
of honors; as, to degrade a nobleman, or a general
officer.
[1913 Webster]

Prynne was sentenced by the Star Chamber Court to be
degraded from the bar. --Palfrey.
[1913 Webster]

2. To reduce in estimation, character, or reputation; to
lessen the value of; to lower the physical, moral, or
intellectual character of; to debase; to bring shame or
contempt upon; to disgrace; as, vice degrades a man.
[1913 Webster]

O miserable mankind, to what fall
Degraded, to what wretched state reserved! --Milton.
[1913 Webster]

Yet time ennobles or degrades each line. --Pope.
[1913 Webster]

Her pride . . . struggled hard against this
degrading passion. --Macaulay.
[1913 Webster]

3. (Geol.) To reduce in altitude or magnitude, as hills and
mountains; to wear down.

Syn: To abase; demean; lower; reduce. See {Abase}.
[1913 Webster]


Degrade \De*grade"\, v. i. (Biol.)
To degenerate; to pass from a higher to a lower type of
structure; as, a family of plants or animals degrades through
this or that genus or group of genera.
[1913 Webster]

143 Moby Thesaurus words for "degrade":
abase, abash, adulterate, alloy, belittle, boot, bounce, break,
bring down, bring into discredit, bring low, bring shame upon,
bump, bust, can, canker, cashier, cast down, cast reproach upon,
cheapen, coarsen, confound, contaminate, corrupt, crush, cry down,
debase, debauch, decry, defile, deflower, defrock, degenerate,
demean, demerit, demote, denature, deplume, depose, deprave,
deprecate, depreciate, deprive, derogate, derogate from, desecrate,
despoil, detract, detract from, devalue, dilute, diminish,
disapprove of, disbar, discharge, discredit, disemploy,
disenfranchise, disfranchise, disgrace, disgrade, dishonor,
dismiss, disparage, displace, displume, distort, downgrade,
drum out, dump, dump on, expel, fire, furlough, give the ax,
give the gate, hold in contempt, humble, humiliate,
impute shame to, infect, kick, kick upstairs, knock, lay off,
lessen, let go, let out, lower, make little of, make redundant,
minimize, misuse, mortify, pension off, pervert, pillory, poison,
pollute, prostitute, put down, put to shame, ravage, ravish,
read out of, reduce, reflect discredit upon, release, remove,
replace, reproach, retire, rule out, run down, sack,
separate forcibly, set down, shame, sink, slight, speak ill of,
strip, strip of rank, submit to indignity, superannuate, surplus,
suspend, taint, take down, thin, trip up, turn off, turn out,
twist, ulcerate, unfrock, unseat, violate, vitiate, vulgarize,
warp, water down, weaken


请选择你想看的字典辞典:
单词字典翻译
degrade查看 degrade 在百度字典中的解释百度英翻中〔查看〕
degrade查看 degrade 在Google字典中的解释Google英翻中〔查看〕
degrade查看 degrade 在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
  • 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
  • Widget testing - Flutter
    A catalog of recipes for adding widget testing to your Flutter app
  • 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
  • Find widgets - Flutter
    To locate widgets in a test environment, use the Finder classes While it's possible to write your own Finder classes, it's generally more convenient to locate widgets using the tools provided by the flutter_test package 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
  • Check app functionality with an integration test - Flutter
    The integration_test package lets you: Use the flutter drive command to run tests on a physical device or emulator Run on Firebase Test Lab, to automate testing on a variety of devices Use flutter_test APIs to write tests in a style similar to widget tests
  • An introduction to unit testing - Flutter
    The test package provides the core framework for writing unit tests, and the flutter_test package provides additional utilities for testing widgets This recipe demonstrates the core features provided by the test package using the following steps: Add the test or flutter_test dependency Create a test file Create a class to test
  • Test orientation - Flutter
    This test makes sure that the orientation is landscape and that only 3 columns of data appear in the app: In test widget_test dart, inside of the Orientation group, add the following test after the landscape test:
  • 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





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