one way to initialize charsequence[] is

charsequence[] item = {"abc","def"};

but i don't want to initialize it this way. can someone please suggest some other way like the way we initialize string[] array...

thanks

link|improve this question

80% accept rate
You should probably give an example of the preferred way because you can initialize a string array the same way as you posted. – Shaded Jan 6 '11 at 14:03
feedback

2 Answers

up vote 2 down vote accepted

This is the way you initialize a string array. You can also have:

CharSequence[] ar = new String[2];
link|improve this answer
feedback

CharSequence is interface you can't initialize like new CharSequence[]{....}

Initialize it with it's implementataions

CharSequence c = new String("s");
System.out.println(c) // s

CharSequence c = new StringBuffer("s");
System.out.println(c) // s

CharSequence c = new StringBuilder("s");
System.out.println(c); // s

and their's arrays

CharSequence[] c = new String[2];
CharSequence[] c = new StringBuffer[2];
CharSequence[] c = new StringBuilder[2];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.