বুধবার, ১৫ ডিসেম্বর, ২০১০
BBQ
http://www.ustream.tv/channel/sajjadul#utm_campaign=www.facebook.com&utm_source=2118195&utm_medium=social
সোমবার, ১৩ ডিসেম্বর, ২০১০
String vs String Buffer vs String Builder
String is immutable whereas StringBuffer and StringBuilder can change their values.
The only difference between StringBuffer and StringBuilder is that StringBuilder is unsynchronized whereas StringBuffer is synchronized. So when the
Criteria to choose among String, StringBuffer and StringBuilder
- If your text is not going to change use a string Class because a String
object is immutable. - If your text can change and will only be
accessed from a single thread, use a StringBuilder because StringBuilder is unsynchronized. - If your text can changes, and will be accessed from
multiple threads, use a StringBuffer because StringBuffer is synchronous.
additional info: http://www.javaworld.com/javaworld/jw-03-2000/jw-0324-javaperf.html
সোমবার, ৬ ডিসেম্বর, ২০১০
বৃহস্পতিবার, ২ ডিসেম্বর, ২০১০
var-args example
import java.util.*;
public class MyVarArgs {
public static void main (String[] ag){
String [] str = {"hi", "hello"};
method1(12, 'a', "Hello", Math.PI, 1/3.0);
method1(18, 94.0);
method1(20,"shohan",'h', "dd");
method2(str);
}
private static void method1(int arg,Object... args){
System.out.println(Arrays.asList(args)+"tst"+arg);
}
private static void method2(String... args) {
System.out.println(Arrays.asList(args) +
" // " + args.length);
}
}
public class MyVarArgs {
public static void main (String[] ag){
String [] str = {"hi", "hello"};
method1(12, 'a', "Hello", Math.PI, 1/3.0);
method1(18, 94.0);
method1(20,"shohan",'h', "dd");
method2(str);
}
private static void method1(int arg,Object... args){
System.out.println(Arrays.asList(args)+"tst"+arg);
}
private static void method2(String... args) {
System.out.println(Arrays.asList(args) +
" // " + args.length);
}
}
এতে সদস্যতা:
পোস্টগুলি (Atom)