What is difference between String and StringBuffer in Java?
can any one tell that what is difference between String and StringBuffer in Java?
can you plz also write me a programme in java, displaying the Append String method?
Plz help me.
What is difference between String and StringBuffer in Java?
String is an immutable type (you can't change its contents once set). To "change" a string, like appending another string value to it, Java will actually create a new string object.
StringBuffer is a mutable string type (you *can* change its contents). You can modify the character data directly in a StringBuffer, or append strings to it without creating a third string, etc.
You should have no trouble at all finding sample code online for StringBuffer.AppendString().
What is difference between String and StringBuffer in Java?
i dont program in java much, but i do in c++ and they are very similar. i should be a string is the general term, and string buffer is specifying the size of the string, so the string will only hold a certian number of characters. for example in c++, you can define a string as
char string[] = "bla bla bla";
to add characters, but if u wanted to specify the buffer to be filled at a later time, u can say
char string[40];
with 40 characters including the hidden return character at the end and then later fill the string with stuff, not exceeding the limit of 40.
- C++......................?
- is there a less complicated c++ compiler than microsoft express 2008? i found it to complicated and hav found no other free program to make a fps. a t..
- C++???????
- I am trying to make a tic tac toe game for c++ but i dont know how to use an array to make the board. also after i make the board hiw do i code it so ..
- C++???????????????
- I HAVE NO IDEA WHAT C++ IS? and i have an exam tomorrow. I dont understand 1. character set 2.tokens. i also have the for statement program, if stat..
- C++..........................?
- where i find the best c++ programing books.C++..........................?AT www.esnips.com/C++..........................?Try doing a search. OReilly t..
- C++????????
- i need to know a simple program to concat two strings without using strcat inside operator overloading.plz help me with a program..............C++????..
- ...................c++?
- How would I create a program that that displays the sum of a sales amount in each of 4 regions, during a 3 month period, which would also display the ..
- "Smitfraud-C. Toolbar888&..
- I am a webmaster, and I am trying to build my website, but my computer keeps acting weird and seems to be going into random hybernation for no reason ..
- C programme...?
- I wrote a programme of calculator in C language. And it has two or three error so pl do correct them. And send me correct answer. Prog. is: #includest..
- C programme...?
- I wrote a programme of calculator in C language. And it has two or three error so pl do correct them. And send me correct answer. Prog. is: #includest..
- C programme...?
- I wrote a programme of calculator in C language. And it has two or three error so pl do correct them. And send me correct answer. Prog. is: #includest..
