English 中文(简体)
无效参数检查、断言或例外的情况如何? [闭门]
原标题:what is better with null parameter checks, assertions or exception? [closed]
  • 时间:2012-05-16 07:50:59
  •  标签:
  • java
  • null
最佳回答

总是考虑到an “assert”并非总是能够做到。 这是你应始终铭记的主要规则。 想把它当作一种机制,以发现你的法典中的弊端、不应发生的意外情况(先决条件)。 另一方面,如果有机会从打电话者那里获得这一无效价值,则会放弃一个例外(即非法占有)。

例如:

  • If you are creating a library to third parties, you can not verify the arguments with assert.
  • In a private method, you can use assert to include pre/postconditions that must be met.
问题回答

这取决于您的用法,

如果您的参数不取消,则请具体填写。 之后,你应坚持或 throw弃<条码>。 非法入境

另一方面,如果其ok是null,那么简单检查不会无效,并分配回落价值,然后继续采用守则。

I don t know where I read that, (maybe someone will point out), but the general rule is like that:

(1) 接口 使用无效检查,因为接口必须处理所有参数,包括无效,但这样做并不禁止你再提出例外。

(2) 在例外情况下,如在您的私人方法中, t不成理由。

3) 使用权势,但并不依赖它,因为它可能是残疾的,而没有列入由此产生的代号。 因此,在发展的同时使用它,而不是用于真正的环境。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签