Feed on
 Posts
 Comments
Java Beans dot Asia

Just a few simple tutorials …

Category Archive for 'brainteaser'

This can be a hard one, since it requires from you to be familiar with Drools. Consider the condition side of the following rules: rule "object comparison one" no-loop when $customer1 : Customer( ) $customer2 : Customer(this != $customer1) then System.out.println("Rule one – Objects are equal"); end rule "object comparison two" no-loop when $customer1 : [...]

Read Full Post »

Consider the following case of inheritance: public class Parent { public Parent() { getValue(); } public void getValue() { } } public class Child extends Parent { private final Integer integer; public Child() { integer = new Integer(888); } @Override public void getValue() { System.out.println(integer); } } Question: What would the following program print, why? [...]

Read Full Post »

Consider the following case of inheritance: public class ExtendingHashSet<E> extends HashSet<E> { private int counter = 0; public ExtendingHashSet() { } @Override public boolean add(E e) { counter++; return super.add(e); } @Override public boolean addAll(Collection&lt;? extends E&gt; c) { counter += c.size(); return super.addAll(c); } public int getCounter() { return counter; } } Created instance: [...]

Read Full Post »

Question: The following program returns result “1″, which indicates that first Integer value is greater than the second, why? import java.util.*; public class Example { public static void main(String[] args) { System.out.println(&quot;Result: &quot; + naturalOrder.compare(new Integer(90), new Integer(90))); } private static Comparator&lt;Integer&gt; naturalOrder = new Comparator&lt;Integer&gt;() { public int compare(Integer first, Integer second) { return [...]

Read Full Post »

When I came across the following example I did not expect the results that the program has printed hehe… Question: What does this program print? Why? import java.util.*; public class SetList { public static void main(String[] args) { Set<Integer> set = new TreeSet<Integer>(); List<Integer> list = new ArrayList<Integer>(); for (int i = -3; i < [...]

Read Full Post »


Page 1 of 212