Class Templates | C++ Tutorial

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

I missed my class on templates so came here. Damn. Sir you never fail to impress me ! I just love how concise the explanation is! The way you show the wrong way of doing things with the code is so amazing! Thanks a lot!!!

aadhuu
Автор

I’m glad I clicked on your video. Your page looks full of useful code! Looking forward to it. And great video you have here too!

chickennuggies
Автор

This is very helpful. Clearly explained and shown in good resolution. Thank you for your service!

thebigchair
Автор

You got a new subscriber.
Simple and straightforward

bakeery
Автор

Man, I love the way you explain things!.

On.
Автор

Absolutely fanstatic!
You are an amazing teacher.
thank you so much for puuting the hard work in making these courses.

blaisofotso
Автор

Thank you. The structure and tempo of your explanation were exactly right :)

BadMemoryAccess
Автор

Awesome tutorial, very clean and super easy to follow 👌👌

Garrison
Автор

Precise and to the point explanation! Thanks for that :))

sunandachowdhury
Автор

Thank you for this video, we have a book to teach us this in my school but it is so confusing compared to this <3

mjj
Автор

Nice explanation...👍 Very clear and useful... Thank you...🙏

johnibat
Автор

Question. Why can length variable initialized array in this case? Because when I try to make an array it never takes variables only ints.

dannggg
Автор

template<typename T>
void gratitude (T x)
{
std::cout << x <<std::endl;
{

int main ()
{
gratitude<std::string> ("THANKS A LOT :)" );
return 0;
}

ib_parametres
Автор

Sir excuse me if I am being stupid, but was this example representing a template function or a template class?

AbdullahNadeem-miyi