Dear all,
I want to use a CountingBloomFilter of java.lang.object.
This is my primary code:
but it seems there is an compiler bug!CountingBloomFilter cbf=new CountingBloomFilter(12, 4, 1);
cbf.add(123);
System.out.print(cbf);
System.out.print("membership:"+cbf.membershipTest( 1));
Exception in thread "main" java.lang.VerifyError: (class: countingbloomfilter/CountingBloomFilter, method: <init> signature: ()V) Constructor must call super() or this()
Would you please help me to solve it?
I am looking to here from you
thanks