2 Solved Topics

Remove Filter
Member Avatar for
Member Avatar for joshl_1995

Hello Community, I was starting up a paid service and I was going to add a payment method using internet transfers but I just wanted to make sure if giving out bank details (BSB & Account Number) was safe? Could someone steal from me if they had those numbers?

Member Avatar for pritaeas
0
250
Member Avatar for rahul.ch

import java.util.*; public class GenericDemo4 { public static void main(String r[]) { Set s1 = new HashSet(); s1.add(0); s1.add("1"); dostuff(s1); } static void dostuff(Set<Number> s) { do2(s); Iterator i = s.iterator(); while(i.hasNext()) System.out.println(i.next() + " "); Object [] oa = s.toArray(); for(int x = 0; x<oa.length; x++) System.out.println(oa[x] + " …

Member Avatar for rahul.ch
0
299

The End.