nullpointer extension

Solutions on MaxInterview for nullpointer extension by the best coders in the world

showing results for - "nullpointer extension"
Valentino
06 Apr 2018
1public class C {
2private B b = null;
3private D d = null;
4private E e = null;
5
6public C(B b, E e, D d)
7{
8    this.b = b;
9    this.e = e;
10    this.d = d;
11}