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







請輸入英文單字,中文詞皆可:

Ignore    音標拼音: [ɪgn'ɔr]
v. 忽略
vt. 不理睬,忽視,駁回

忽略不理睬,忽視,駁回

ignore
忽略

ignore
略 忽略

ignore
v 1: refuse to acknowledge; "She cut him dead at the meeting"
[synonym: {ignore}, {disregard}, {snub}, {cut}]
2: bar from attention or consideration; "She dismissed his
advances" [synonym: {dismiss}, {disregard}, {brush aside}, {brush
off}, {discount}, {push aside}, {ignore}]
3: fail to notice [ant: {mark}, {note}, {notice}]
4: give little or no attention to; "Disregard the errors" [synonym:
{neglect}, {ignore}, {disregard}]
5: be ignorant of or in the dark about [ant: {cognise},
{cognize}, {know}]

Ignore \Ig*nore"\, v. t. [imp. & p. p. {Ignored}; p. pr. & vb.
n. {Ignoring}.] [L. ignorare; pref. in- not the root of
gnarus knowing, noscere to become acquainted with. See
{Know}, and cf. {Narrate}.]
1. To be ignorant of or not acquainted with. [Archaic]
[1913 Webster]

Philosophy would solidly be established, if men
would more carefully distinguish those things that
they know from those that they ignore. --Boyle.
[1913 Webster]

2. (Law) To throw out or reject as false or ungrounded; --
said of a bill rejected by a grand jury for lack of
evidence. See {Ignoramus}.
[1913 Webster]

3. Hence: To refuse to take notice of; to shut the eyes to;
not to recognize; to disregard willfully and causelessly;
as, to ignore certain facts; to ignore the presence of an
objectionable person.
[1913 Webster]

Ignoring Italy under our feet,
And seeing things before, behind. --Mrs.
Browning.
[1913 Webster]

181 Moby Thesaurus words for "ignore":
abide with, abjure, accept, allow for, avoid, ban, bar, bar out,
be big, be blind to, be caught napping, be caught out,
be content with, be easy with, be inattentive, be neglectful,
be negligent, be unwary, bear with, blink at, blockade,
break the law, brook, brush aside, brush off, care naught for,
chuck, chuck out, color, condone, connive at, contemn, contradict,
count out, cut, cut dead, cut off, debar, decline, default, defy,
deny, despise, digest, diminish, disapprove, discard, disclaim,
discount, disdain, dismiss, disobey, disown, disregard, down, ease,
eat, embargo, endure, evade, except, exclude, extenuate, fail,
flout, forget, forswear, freeze out, give no heed, give the go-by,
gloss over, go counter to, hear nothing, judge not, keep out,
lapse, lean over backwards, leave out, leave unavenged, lessen,
let go, let it go, let pass, let ride, let slide, let slip,
listen to reason, live with, lock out, look right through,
lose sight of, lose track of, make allowance for,
make allowances for, make light of, make little of, mince, miss,
mitigate, neglect, nod, not attend, not care for, not conform,
not get involved, not heed, not keep, not listen, not mind,
not notice, not observe, not think, not write off, omit, ostracize,
overlook, overpass, palliate, pass by, pass over, pass up,
pay no attention, pay no mind, pocket, pocket the affront,
pooh-pooh, preclude, prohibit, push aside, rebuff, recant, refuse,
refuse to acknowledge, refuse to consider, refuse to cooperate,
refuse to recognize, regard with indulgence, reject, relegate,
renounce, repel, repudiate, repulse, scoff at, scout,
see both sides, see nothing, send to Coventry, set at defiance,
set at naught, set naught by, shove away, shut out, sleep, slight,
slur over, snub, soft-pedal, soften, spurn, stomach,
suspend judgment, swallow, swallow an insult, taboo, take,
take for granted, think little of, throw away, throw out, tolerate,
transgress, turn aside provocation, turn away, turn out, varnish,
view with indulgence, violate, waive, whitewash, wink at

請選擇你想看的字典辭典:
單詞字典翻譯
ignore查看 ignore 在Google字典中的解釋Google英翻中〔查看〕
ignore查看 ignore 在Yahoo字典中的解釋Yahoo英翻中〔查看〕





安裝中文字典英文字典查詢工具!


中文字典英文字典工具:
選擇顏色:
輸入中英文單字

































































英文字典中文字典相關資料:
  • How do you disable the unused variable warnings coming out of gcc in . . .
    then GCC sees the instruction -Wall -Wextra and seems to ignore -Wno-unused-variable This can instead look like this below and you get the desired effect of not being stopped in your compile on the unused variable:
  • gitignore - How to ignore certain files in Git - Stack Overflow
    How to ignore new files Globally Add the path(s) to your file(s) which you would like to ignore to your gitignore file (and commit them) These file entries will also apply to others checking out the repository Locally Add the path(s) to your file(s) which you would like to ignore to your git info exclude file These file entries will
  • github - How to use gitignore command in git - Stack Overflow
    will ignore all log files but will track files named important log If you are tracking files you meant to ignore, delete them, add the pattern to you gitignore file and add all the changes # delete files that should be ignored, or untrack them with # git rm --cached <file list or pattern> # stage all the changes git commit git add -A
  • How to always use ignore-platform-reqs flag when running composer?
    Composer now supports (as of version 2 3 0) checking an environment variable to set --ignore-platform-reqs Create an environment variable COMPOSER_IGNORE_PLATFORM_REQS=1 to ignore all or COMPOSER_IGNORE_PLATFORM_REQ=something to ignore something as a requirement
  • How to use `@ts-ignore` for a block? - Stack Overflow
    If your goal is to ignore some method or property only in the declaration output you can use the internal annotation to do that Leaving this here as since this post is the top search result and I came across while searching for a way to ignore things in the declaration output
  • How to ignore the certificate check when ssl - Stack Overflow
    using System Net Http; using System Net Security; using System Security Cryptography X509Certificates; public class MyController : ApiController { use this HttpClient instance when making calls that need cert errors suppressed private static readonly HttpClient httpClient; static MyController() { create a separate handler for use in this
  • MongoDB C# Driver: Ignore Property on Insert - Stack Overflow
    I am using the Official MongoDB C# Drive v0 9 1 26831, but I was wondering given a POCO class, is there anyway to ignore certain properties from getting inserted For example, I have the following class: public class GroceryList { public string Name { get; set; } public FacebookList Owner { get; set; } public bool IsOwner { get; set; } }
  • svn - How do I ignore files in Subversion? - Stack Overflow
    Then edit the file to leave just the files you want actually to ignore Then use this one to ignore the files listed in the file: svn propset svn:ignore -F ignoring txt Note the dot at the end of the line It tells SVN that the property is being set on the current directory Delete the file: rm ignoring txt Finally commit,
  • python - How to tell flake8 to ignore comments - Stack Overflow
    Using an inline comment # noqa: E501 should ignore this issue for you If you have a multi-line comment, you can ignore inline at the end of the multi-line string like so: def do_something(): """ Long url as a reference
  • git ignore vs. exclude vs. assume-unchanged - Stack Overflow
    To ignore uncommitted changes in a file that is already tracked, use 'git update-index --assume-unchanged' See commit 936d2c9 from Michael J Gruber (mjg): gitignore txt: do not suggest assume-unchanged git-update-index --assume-unchanged was never meant to ignore changes to tracked files (only to spare some stats)





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

|中文姓名英譯,姓名翻譯 |简体中文英文字典