📚 Learn how to solve problems and build projects with these Free E-Books ⬇ C++ Lambdas e-book - free download here: bit.ly/freeCppE-Book Entire Object-Pascal step-by-step guide - free download here: bit.ly/FreeObjectPascalEbook 🚀📈💻🔥 My Practical Programming Course: www.codebeautyacademy.com/ Experience the power of practical learning, gain career-ready skills, and start building real applications! This is a step-by-step course designed to take you from beginner to expert in no time! 💰 Here is a coupon to save 10% on your first payment (CODEBEAUTY_YT10). Use it quickly, because it will be available for a limited time. ****CODE FROM THE VIDEO IS BELOW**** #include using namespace std; class Book { public: string Title; string Author; float* Rates; int RatesCounter; Book(string title, string author) { Title = title; Author = author; RatesCounter = 2; Rates = new float[RatesCounter]; Rates[0] = 5; Rates[1] = 4; } ~Book() { delete[] Rates; Rates = nullptr; } }; int main() { Book book1("Millionaire Fastlane", "M.J. DeMarco"); Book book2("C++ Lambda Story", "Bartek F."); cin.get(); }
can't wait for your course, your videos are the best, after months of struggling to understand programming, i now understand everything with your videos, and i even won a coding competition thanks to you
Thanks for this video! Copy constructors was one of those things that was confusing for me. It's difficult to test for deallocated memory so I could never be sure whether or not I copied correctly without having memory leak.
Very good video. I always enjoy watching your videos and being reminded of concepts that I haven't used in c++ that I haven't used in a long time since at work I've only been working on VB projects.
BIG thank you for making this video!!!! Your videos are so comprehensive. I hope you will continue making a lot more good content like this. You truly inspired me
your videos helped me to finish university, I'm waiting for your practical programming course now to crash my internship. sending love for you codebeauty
Thanks for your video. Absolutely want to hear more about assignment operator or the Big Three. Appreciate that if you can also talk about deep copy vs shallow copy.
@CodeBeauty Why the compiler not implitly provide a default copy ctor while there is only a custom constructor and a `Book(Book)` method is defined? If the compiler does so, the `Book(Book)` should work. See 11:25 of the video.
thank you for this video dear saldina, when will your course be available, i already subscribed to the waiting list and i can't wait for it. love you so much, and thank you! 🥺❤
It was really an awesome lecture on copy ctor, you cleared my all doubts in 1 go. i request you to please make a seprate video on copy assignment operator too, or diff b/w copy ctor and copy assignment operator!
I think what you mean at min 12 is that you have a circular dependency, I already knew about that array trap, Can you do a follow up on the copy and move assignment operators
The line "Book 3;" with the class example in the video called "Book" will create a book class named only 3, so it will give you an error when trying to assign it to b1. If the question you were reffering was with the code: Book book3; book3=b1; It would have invoked the copy constructor, even though it could have been written as "Book book3=b1;"
Error: the argument to a copy constructor must be by reference. See standard in §12.8/3: A declaration of a constructor for a class X is ill-formed if its first parameter is of type (optionally cv- qualified) X and either there are no other parameters or else all other parameters have default arguments.
Hello saldina, please make an tutorial about constructor. Especial about konfig list. There are Things beyond assigning init values to member values and simple heritage . What does the Compiler do with Text between colon and curly bracket in Detail. I really found nothing about this speaking to me. Thanks a lot!!!! Manfred
Appreciated. I think it would have been even more helpful not using pointers, but demonstrating how you still need to do the copy constructors with modern C++.
yes I searched a lot for the copy constructor why we use the reference in the argument of the copy constructor instead of the simple object .. but this video is really very good to understand it … thank you so much .. and please make the video on the assignment operator and the copy constructor in detail....please
Hallo Saldina , thanks very much for your tutorial it Help me a lot to understand the concept behind. My question is about the call by value & reference. You Said call by value send the copy to the callee function or variable, that one is okay for me , but when it come to call by reference, due to the fact that it passed the original to a function. What will hapen if the callee function modify the original and that somewhere in the Code other functions need the original value that had been modify. This Situation give me nightmare when working with large functions 😢😢😢. Thanks very much for your Help.
You do explain very well. I have to say that. However, there is a missing part: copy constructor invokation during return by value. I guess the video was already too long.
you should definately do a move constructor video for instance, a move constructor: class A { public: std::vector v; std::string str; std::mutex m; A() { v.resize(100); str.resize(100); } A( A&& a) noexcept { v = std::move(a.v); str = std::move(a.str); } void printAddresses() { auto print = [&](const auto& c, auto pointer) { std::cout
If this was hard to understand, then you probably lacked some knowledge before this video. Did you watch my video about constructors and destructors? If not, them you must watch them before you can understand this topic, because they are prerequisites for this video 👋👋
📚 Learn how to solve problems and build projects with these Free E-Books ⬇
C++ Lambdas e-book - free download here: bit.ly/freeCppE-Book
Entire Object-Pascal step-by-step guide - free download here: bit.ly/FreeObjectPascalEbook
🚀📈💻🔥 My Practical Programming Course: www.codebeautyacademy.com/
Experience the power of practical learning, gain career-ready skills, and start building real applications!
This is a step-by-step course designed to take you from beginner to expert in no time!
💰 Here is a coupon to save 10% on your first payment (CODEBEAUTY_YT10).
Use it quickly, because it will be available for a limited time.
****CODE FROM THE VIDEO IS BELOW****
#include
using namespace std;
class Book {
public:
string Title;
string Author;
float* Rates;
int RatesCounter;
Book(string title, string author) {
Title = title;
Author = author;
RatesCounter = 2;
Rates = new float[RatesCounter];
Rates[0] = 5;
Rates[1] = 4;
}
~Book() {
delete[] Rates;
Rates = nullptr;
}
};
int main() {
Book book1("Millionaire Fastlane", "M.J. DeMarco");
Book book2("C++ Lambda Story", "Bartek F.");
cin.get();
}
8:05
8:05
😊 8:05
I came here for the copy constructor but kept looking at the breasts. I wish I could see more of them. Is there a way to do that?
can't wait for your course, your videos are the best, after months of struggling to understand programming, i now understand everything with your videos, and i even won a coding competition thanks to you
cool! congrats!
Hey!! Congratulation❤❤
I love how you explain c++❤ very clearly
Thanks!
Thanks 🥰❤️
How on the earth you make your every elucidations too simple. I really appreciate it ❤
Thanks for this video! Copy constructors was one of those things that was confusing for me. It's difficult to test for deallocated memory so I could never be sure whether or not I copied correctly without having memory leak.
Very good video. I always enjoy watching your videos and being reminded of concepts that I haven't used in c++ that I haven't used in a long time since at work I've only been working on VB projects.
BIG thank you for making this video!!!! Your videos are so comprehensive. I hope you will continue making a lot more good content like this. You truly inspired me
Thank you, I'm happy that my videos help, and I'm making new videos every week 😄😄
can't wait for your practical programming course saldina. i already signed in and i'm sure it will be amazing
Thank you this video. Great to see C++ thriving. Please ignore the stupid and humiliating comments. Looking forward for more content.
love your videos saldina and i'm sure your practical programming course will be amazing as well, i can't wait for it and thanks for the discount
cant wait for your course saldina, I love your videos, they are the best
Best C++ tutorials
I gave up programming in c++ years ago ... You gave me hope to rethink my decision ....
Amazing as always. thanks Saldina
your videos helped me to finish university, I'm waiting for your practical programming course now to crash my internship. sending love for you codebeauty
I liove your channel......this is first class of work. Thank you v much .
Happy New year Madam, After a long time again I started to watch your videos😊😉
Welcome back, and I also wish you a happy and prosperous 2024. 🥳🥳
I love the content and the person as well
Nice explanation of copy constructor!!
Lovely channel... it's a value. Thank you very much indeed.....
Thank you, this video explained the topic with great detail compared to my textbook. I look forward to your future video uploads.
thanks very much, love your explanations. 👍🏿👍🏿
Thanks! Nice to See you again.
Greetings from Frankfurt/Main
Thanks for your video. Absolutely want to hear more about assignment operator or the Big Three. Appreciate that if you can also talk about deep copy vs shallow copy.
@CodeBeauty Why the compiler does not implicitly provide a default copy constructor to make the `Book(Book)` work? see 11:25 of the video.
really good explanation. Thanks Beauty for beautiful explanation
Tricky, yet simple. Only because of your explanations. 💗💗
@CodeBeauty Why the compiler not implitly provide a default copy ctor while there is only a custom constructor and a `Book(Book)` method is defined? If the compiler does so, the `Book(Book)` should work. See 11:25 of the video.
it was an incredible section thank you very well for your efforts you are the best teacher that I ever seen
Fantastic and to the point. Thank you!
your channel best on youtube related to programming.
Very nice Saldina.
thank you for this video dear saldina, when will your course be available, i already subscribed to the waiting list and i can't wait for it. love you so much, and thank you! 🥺❤
It was really an awesome lecture on copy ctor, you cleared my all doubts in 1 go. i request you to please make a seprate video on copy assignment operator too, or diff b/w copy ctor and copy assignment operator!
will want to know more about assignment operator as well.
Please make a video on assignment operator!
You are amazing, thank you so much🥰
completed the whole playlist. Best way of explaining oops.
Good explained! Do you have video or maybe you are going to prepare explanation of move constructors?
U're amazing...
U just make coding easy🥺❤️
Thank you for your videos. It helps a lot!
Your explanation is marvelous, as a beginner, I have a better knowledge about copy constructor. Thanks and please keep going
🥰❤️
what app you use for screen record and edit your youtube video
Amazing Explanation!!
Thank you for your time
have you created any video for assignment operator? Please can you share the link
I would like to see the difference between copy constructor and assignment operator
I'll publish that video next week 😄
Thank-you, I never knew that. Pretty important information to know.
do you have any videos on object compositions?
Thank you for your work.
Love!)
How do you not have the default constructor? When I didn't my code have errors.
If you need a parameterles constructor but you don't have it, you'll get errors 😊
@@CodeBeauty Isn't it essential?
Thank you!
i really love your videos! thank you for the content : D
I 💕💕 your videos on c++
I think what you mean at min 12 is that you have a circular dependency, I already knew about that array trap, Can you do a follow up on the copy and move assignment operators
question:
Book 3;
book 3 = b1; // this invokes the copy constructor right?
thank you for the great video
The line "Book 3;" with the class example in the video called "Book" will create a book class named only 3, so it will give you an error when trying to assign it to b1. If the question you were reffering was with the code:
Book book3;
book3=b1;
It would have invoked the copy constructor, even though it could have been written as "Book book3=b1;"
Error: the argument to a copy constructor must be by reference.
See standard in §12.8/3:
A declaration of a constructor for a class X is ill-formed if its first parameter is of type (optionally cv- qualified) X and either there are no other parameters or else all other parameters have default arguments.
Great example, thanks
you are too good!!
thank you ....miss CodeBeauty Godbless you miss...
Very well explained! Thanks for the video. Would it be possible to make a video about move constructor? Thanks!
amazing video, thanks saldina
thank you very muchhh!
my friend says its like: Hard to focus on code but learning and entertainment side by side;
😂 🤣 🤣
Plz make a video on move constructor
Hello saldina, please make an tutorial about constructor. Especial about konfig list. There are Things beyond assigning init values to member values and simple heritage .
What does the Compiler do with Text between colon and curly bracket in Detail. I really found nothing about this speaking to me.
Thanks a lot!!!!
Manfred
Appreciated. I think it would have been even more helpful not using pointers, but demonstrating how you still need to do the copy constructors with modern C++.
Could you pls make some videos on visual studio for developers so that they can be efficient while debugging and development.
yes I searched a lot for the copy constructor why we use the reference in the argument of the copy constructor instead of the simple object .. but this video is really very good to understand it … thank you so much .. and please make the video on the assignment operator and the copy constructor in detail....please
Life saviour ❤❤❤❤❤
Can you pls make a video about move constructor and move semantics its really hard topic for me to understand
Hi Saldina, I have already subscribed to you, and I want to copy assignment, move ctor and move assignment ctor video. Thank you for your hard work
Ok. Very nice.
got distracted but understood everything thanks ....
why does c or c++ even pass by value? Why not pass by reference all the time? what is the benefit of passing by value?
Wonderful
Thanks.
Awesome thanks ❤
Hallo Saldina , thanks very much for your tutorial it Help me a lot to understand the concept behind. My question is about the call by value & reference. You Said call by value send the copy to the callee function or variable, that one is okay for me , but when it come to call by reference, due to the fact that it passed the original to a function. What will hapen if the callee function modify the original and that somewhere in the Code other functions need the original value that had been modify. This Situation give me nightmare when working with large functions 😢😢😢. Thanks very much for your Help.
So to prevent the stuff you mentioned above, let use const keyword for the original.
Well touch of cpp
Cool, when unit testing and ndk? 👻, pls🙏
I'm waiting for explain static members and functions please if you don't mind 🙏
You do explain very well. I have to say that. However, there is a missing part: copy constructor invokation during return by value. I guess the video was already too long.
Умная и очаровательная девушка!
how to do deep copy in this??@CodeBeauty
I am from indonesia ...i like learn this is chanell CodeBeauty ...
please work hospital manegment system in c++
you should definately do a move constructor video
for instance, a move constructor:
class A {
public:
std::vector v;
std::string str;
std::mutex m;
A() {
v.resize(100);
str.resize(100);
}
A( A&& a) noexcept {
v = std::move(a.v);
str = std::move(a.str);
}
void printAddresses() {
auto print = [&](const auto& c, auto pointer) {
std::cout
I dunno, I like the simplicity of just deleting the code that is causing my errors. 😂
difficult method u used to teach please keep it simple to explain
If this was hard to understand, then you probably lacked some knowledge before this video. Did you watch my video about constructors and destructors? If not, them you must watch them before you can understand this topic, because they are prerequisites for this video 👋👋
@@CodeBeauty dear , i already know how it work .. but your teaching way , somehow make's me difficult to understand
Error exception! Code not found! ;-)
Saldina❤😍
a7ssen osstada f l3alam
Wlah nadia
I want a video on data science.
very good video , but it's hard to focus on the code when i see u
i really can see ++
Very good video, however I was pleasantly distracted 😉
😉😉
@@muhammadtahasarwar2110 You know what I'm talking about 👍
@@ted2704 Oranges are pleasent and inviting especially in Summer; so yes they can be distracting
a real smart beauty 😍🥰🤩
😻😻😻
i love what she is wearing