英文字典中文字典


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







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

thoughtless    音标拼音: [θ'ɔtləs]
a. 没有考虑的,无深虑的,轻率的

没有考虑的,无深虑的,轻率的

thoughtless
adj 1: showing lack of careful thought; "the debate turned into
thoughtless bickering" [ant: {thoughtful}]
2: without care or thought for others; "the thoughtless saying
of a great princess on being informed that the people had no
bread; `Let them eat cake'" [synonym: {thoughtless}, {uncaring},
{unthinking}]

Thoughtless \Thought"less\, adv.
1. Lacking thought; careless; inconsiderate; rash; as, a
thoughtless person, or act.
[1913 Webster]

2. Giddy; gay; dissipated. [R.] --Johnson.
[1913 Webster]

3. Deficient in reasoning power; stupid; dull.
[1913 Webster]

Thoughtless as monarch oaks that shade the plain.
--Dryden.
[1913 Webster] -- {Thought"less*ly}, adv. --
{Thought"less*ness}, n.
[1913 Webster]

217 Moby Thesaurus words for "thoughtless":
absent-minded, airy, apish, arbitrary, artless, asinine, batty,
befooled, beguiled, besotted, blank, blankminded, brainless, brash,
buffoonish, calm, capricious, careless, casual, cockeyed, crazy,
credulous, cursory, daffy, daft, dazed, degage, discourteous,
disregardant, disregardful, distracted, distrait, dizzy, doting,
dumb, easygoing, empty, empty-headed, fatuitous, fatuous,
featherbrained, featherheaded, feckless, flaky, flippant, fluttery,
fond, fool, foolheaded, foolish, forgetful, free and easy,
frivolous, fuddled, futile, gaga, giddy, giddy-brained,
giddy-headed, giddy-pated, giddy-witted, goofy, grasshopper,
gulled, half-assed, happy-go-lucky, harebrain, harebrained, hasty,
heedless, hotheaded, idiotic, ill-advised, ill-considered,
ill-contrived, ill-devised, ill-gauged, ill-judged, imbecile,
impolite, impolitic, improvident, imprudent, inadept, inadvertent,
inadvisable, inane, inapt, inattentive, incautious, incogitant,
inconsiderate, incurious, indifferent, indiscreet, inefficient,
inept, inexpedient, inexpert, infatuated, injudicious, inobservant,
insane, insensate, insensitive, insouciant, irrational, kooky,
lazy, loony, mad, madcap, maudlin, mediocre, mindless, misadvised,
misguided, moronic, myopic, neglectful, negligent, nirvanic, nutty,
oblivious, offhand, passive, pedestrian, perfunctory, poor,
quietistic, rash, rattlebrained, rattleheaded, rattlepated,
reasonless, reckless, regardless, relaxed, remiss, respectless,
rude, sappy, scatterbrained, scramblebrained, screwy, selfish,
senseless, sentimental, sharp, shatterbrained, shiftless,
shortsighted, silly, skill-less, stupid, tactless, thoughtfree,
thriftless, tranquil, unaccommodating, unadvised, unapt,
uncalculating, uncaring, unceremonious, uncomplaisant,
unconsidered, uncooperative, undeft, undexterous, undextrous,
undiplomatic, undiscerning, uneconomical, unfacile, unforeseeing,
ungracious, unguarded, unheedful, unheeding, unhelpful, unideaed,
unintellectual, unintelligent, unmarking, unmindful, unnoticing,
unnoting, unobliging, unobservant, unobserving, unoccupied,
unprepared, unproficient, unproviding, unready, unreasonable,
unreasoning, unreflecting, unreflective, unremarking, unseeing,
unsensible, unskillful, unsolicitous, unsound, untactful,
unthinking, unthoughtful, unthrifty, unwise, vacant, vacuous,
wacky, wet, witless, wrecking


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





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


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

































































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


  • What is JSON and what is it used for? - Stack Overflow
    679 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
  • 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
  • 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
  • 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
  • How to style a JSON block in Github Wiki? - Stack Overflow
    ```json Here goes your json object definition ``` Note: This won't prettify the json representation To do so, one can previously rely on an external service such as jsbeautifier org and paste the prettified result in the wiki
  • Newest json Questions - Stack Overflow
    I need my JSON output to show the "idTransanction" and "details" fields first for logging purposes Currently, Jackson alphabeticalizes them or follows a random order
  • 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
  • Is there any standard for JSON API response format?
    Do standards or best practices exist for structuring JSON responses from an API? Obviously, every application's data is different, so that much I'm not concerned with, but rather the "response
  • 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 read an external local JSON file in JavaScript?
    451 I have saved a JSON file in my local system and created a JavaScript file in order to read the JSON file and print data out Here is the JSON file:





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