বুধবার, ১৫ ডিসেম্বর, ২০১০

BBQ

http://www.ustream.tv/channel/sajjadul#utm_campaign=www.facebook.com&utm_source=2118195&utm_medium=social

সোমবার, ১৩ ডিসেম্বর, ২০১০

Symfony

Symfony

Open-Source PHP Web Framework

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 application needs to be run only in a single thread then it is better to use StringBuilder. StringBuilder is more efficient than StringBuffer.

Criteria to choose among String, StringBuffer and StringBuilder

  1. If your text is not going to change use a string Class because a String object is immutable.
  2. If your text can change and will only be accessed from a single thread, use a StringBuilder because StringBuilder is unsynchronized.
  3. If your text can changes, and will be accessed from multiple threads, use a StringBuffer because StringBuffer is synchronous.
src: javatips
additional info: http://www.javaworld.com/javaworld/jw-03-2000/jw-0324-javaperf.html

সোমবার, ৬ ডিসেম্বর, ২০১০

Therap

1. ABC Tomcat for Ubuntu

বৃহস্পতিবার, ২ ডিসেম্বর, ২০১০

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);
}
}