英文字典中文字典


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







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

incapacity    音标拼音: [ɪnkəp'æsəti]
n. 无能,无力,不适当

无能,无力,不适当

incapacity
n 1: lack of intellectual power [ant: {capacity}, {mental
ability}]
2: lack of physical or natural qualifications [ant: {capacity}]

Incapacity \In`ca*pac"i*ty\, n.; pl. {Incapacities}. [Cf. F.
incapacit['e].]
[1913 Webster]
1. Lack of capacity; lack of physical or intellectual power;
inability.
[1913 Webster]

2. (Law) Lack of legal ability or competency to do, give,
transmit, or receive something; inability;
disqualification; as, the inacapacity of minors to make
binding contracts, etc.

Syn: Inability; incapability; incompetency; unfitness;
disqualification; disability.
[1913 Webster]

82 Moby Thesaurus words for "incapacity":
Urdummheit, brainlessness, caducity, decrepitude, disability,
disablement, disqualification, foolishness, ignorance, imbecility,
inability, inadeptness, inadequacy, inaptitude, inaptness,
inattentiveness, incapability, incapacitation, incompetence,
incompetency, indexterity, ineffectiveness, ineffectuality,
inefficacy, inefficiency, ineptitude, ineptness, infancy,
inferiority, infirmity, insipidity, instability, insufficiency,
invalidism, irrationality, lackbrainedness, lackwittedness,
legal incapacity, low IQ, maladjustment, maladroitness, mediocrity,
mental weakness, mindlessness, minority, pedestrianism,
primal stupidity, reasonlessness, ricketiness, rustiness, senility,
senselessness, shakiness, skill-lessness, slackmindedness,
slackwittedness, thoughtlessness, unaptness, uncleverness,
undeftness, undexterousness, undextrousness, unfirmness, unfitness,
unfittedness, unintellectuality, unintelligence, unproficiency,
unschooledness, unskillfulness, unsoundness, unsteadiness,
unsturdiness, unsubstantiality, untrainedness, unwisdom,
unwiseness, vapidity, wardship, wateriness, wishy-washiness,
witlessness

INCAPACITY. The want of a quality legally to do, give, transmit, or receive
something.
2. It arises from nature, from the law, or from both. From nature, when
the party has not his senses, as, in the case of an idiot; from the law, as,
in the case of a bastard who cannot inherit from nature and the law; as, in
the case of a married woman, who cannot make contracts or a will.
3. In general, the incapacity ceases with the cause which produces it.
If the idiot should obtain his senses, or the married woman's husband die,
their incapacity would be at an end.
4. When a cause of action arises during the incapacity of a person
having the right to sue, the act of limitation does not, in general,
commence to run till the incapacity has been removed. But two incapacities
cannot be joined in order to come within the statute.


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





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


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

































































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


  • Why does String. valueOf (null) throw a NullPointerException?
    according to the documentation, the method String valueOf(Object obj) returns: if the argument is null, then a string equal to "null"; otherwise, the value of obj toString() is returned
  • Why null String is returned in String. valueOf instead of java null . . .
    I was checking String valueOf method and found that when null is passed to valueOf it returns "null" string instead of pure java null My question is why someone will return "null" string why not pure java null public static String valueOf(Object obj) { return (obj == null) ? "null" : obj toString(); }
  • Why String. valueOf(null) is causing null pointer exception?
    Because String valueOf(null) picks the overloaded method with char[] argument, and then fails in the new String(null) constructor This choice is made at compile time If you want to explicitly use the overloaded method with a Object argument, use: String valueOf((Object) null)
  • java String. valueOf(null)为什么会报空指针 - CSDN社区
    到这里就看明白了,至于 String valueOf(null)为什么会调String(char value[])这个函数,没搞明白 说错了, 为什么会调用valueOf(char data[]),难道是char数组是所有valueOf参数中可接受null值的最小单位?
  • java - String. valueOf() Null pointer - Stack Overflow
    "null" is printed to the console If you have: System out println(String valueOf(null)); a NPE is thrown That is because valueOf is overloaded String valueOf(Object) String valueOf(char[]) To explain the NPE, if you examine the code for String valueOf(char[]): return new String(data); and the constructor for String is:
  • Java String. valueOf (null) throws NPE, but Object a = null; String . . .
    The first invocation is to String#valueOf(Object), the second is to String#valueOf(char[]) The overloaded method is chosen according to the argument's static type, this is why the first works and the seconds get an NPE If you invoke System out println ( String valueOf((Object)null)); it will work
  • Conversion of null to string in Java - Stack Overflow
    String valueOf(null) calls public static String valueOf(char data[]) due to method overloading resolution rules (char[] is more specific than Object) That method throws NullPointException for a null argument String valueOf(i) calls public static String valueOf(Object obj), which returns the String "null" for a null argument
  • java - String. valueOf(null) String. valueOf(s) - Stack Overflow
    String valueOf(someString) calls valueOf(Object obj) which does return (obj == null) ? "null" : obj toString(); General note: please use a proper IDE This was not my "knowledge" writing this question but just me using my IDE for ~1 minute to see which methods will actually be called, I did not even run the code
  • java - Get empty string when null - Stack Overflow
    I want to get string values of my fields (they can be type of long string or any object), if a field is null then it should return empty string, I did this with guava; nullToEmpty(String valueOf(gearBox)) nullToEmpty(String valueOf(id)) But this returns null if gearbox is null!
  • String. valueOf () to return empty string instead of null
    I have the below method call If name or desc is null, it uses the word null Instead I would like an empty string How to achieve this as part of the method call itself I don't want to do this outside of the method call with if conditions boolean creatok = users create (String valueOf(name), String valueOf(desc));





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