Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

nullpointer extension

public class C {
private B b = null;
private D d = null;
private E e = null;

public C(B b, E e, D d)
{
    this.b = b;
    this.e = e;
    this.d = d;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #nullpointer #extension
ADD COMMENT
Topic
Name
4+1 =