Concatenating Strings in Java

preview_player
Показать описание
Java Programming: Concatenating Strings in Java Programming
Topics discussed:
1. Concatenating Strings using +
2. Concatenating Strings and Numbers.
3. More examples of concat().

Music:
Axol x Alex Skrindo - You [NCS Release]

#JavaByNeso #JavaProgramming #ConcatenatingStrings
Рекомендации по теме
Комментарии
Автор

Wow, you guys are back...
Faith in humanity restored

prajwalm.s
Автор

THANK YOU SO MUCH DEAR Lecturer for this good explanation and easy to understand videos. you are a genious. bless

whatsapwhatsapp
Автор

Great lecture sir!,
Sir plzz make videos on OOP's Concepts .... Abstraction, inheritance, etc..
Plzz sir🙏🏻🇮🇳❤️

AbhishekSingh-cufe
Автор

This is man can take credit for my grades for realll!!

rossbeukes
Автор

Sir when you are going to launch your app we are for it very curiosly

balakrishnaprasad
Автор

Well explained, thank you so much brother!

nafmee
Автор

It should always be considered that a string cannot be really "expanded", since basically it contains the characters used in the string in the form of an array, and arrays cannot expand. What really happens when concatinating strings is a new string is created which contains the partial strings, and if you for example do it like string a += string b, the old string a will be deleted. So this is a very costly thing in terms of time and memory consuming (even if the memory will be freed afterwards in this case). Same thing with arrays (in visual basic there is the awful "redim" function which also does not resize an existing array but allocates new memory and moves the array content to a new location).
This is crucial when you work with large string constructions like sql statements where a lot of partial strings form the final sql statement.
Better consider using special generic containers in this case which only once produce a string when all parts have been stored in the container.
In C# there is a StringBuilder class for this reason.
This string behaviour is true in each and every programming language.

gerhardbiebl
Автор

I want to start android development will this course be enough for starting android development?

razaali
Автор

Sir you upload lecture after 10 day.please sir upload daily

ashokyadavfqplmgxjia
Автор

IntAt() method ..can I use some program it may cause any errors or not..sir

yazhini
Автор

5:42 Is it possible to print 5+3=8 using concat() ?

DeepakKumar-dwre