Тёмный

Unique Pointer In C++ 

CppNuts
Подписаться 78 тыс.
Просмотров 46 тыс.
50% 1

Опубликовано:

 

27 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 66   
@rajanivdeshpande
@rajanivdeshpande 4 года назад
Good videos. One clarification, in this ex. the pointer variable "p" will be created on stack so its local in main() ,but the chunk of memory will be allocated on heap. So once we get exception , the pointer "p" goes out of scope hence memory leak because we lost pointer "p" and thus lost the access to chunk of memory on heap.
@taihingtse
@taihingtse 4 года назад
One of the best explanations! This channel just get a new subscriber.
@CppNuts
@CppNuts 4 года назад
Thanks man!!
@treyquattro
@treyquattro 4 года назад
good video explaining the idea behind unique_ptr and how to use it (it's like the non-managed C++ version of garbage collection for raw pointers). The only issues I had were that your examples can be a bit hard to follow at first. You know what you intend to show but it's a little confusing, even for a veteran programmer, to follow what you're doing when passing ownership around, releasing pointers, etc. But then that's generally difficult to follow in C++ at the best of times. Maybe more descriptive variable names, including the initial values, e.g. unique_ptr fooptr1_10 = make_unique(10); Then when you e.g. unique_ptr fooptr2_10 = std::move(fooptr1_10) you can see that the contents of fooptr1_10 were moved. Dumping the values of objects after moves to show that the object really was transferred from one place to another might help people unfamiliar with the concept too.
@ParvezKhanPK
@ParvezKhanPK 4 года назад
Dude you are making good videos. Just one suggestion, it is hard to read on mobile screen whatever you have written on the terminal. Better if you can increase the font size or zoom the window.
@CppNuts
@CppNuts 4 года назад
Sure i will try to do something about it. Thanks man..
@zaspanyflegmatyk2446
@zaspanyflegmatyk2446 4 года назад
Best tutorial on the topic i have ever seen, thank you
@CppNuts
@CppNuts 4 года назад
Thanks mate..
@keshavchandra1996
@keshavchandra1996 3 года назад
Very nice explanation. Cleared the concept well. Subscribed!
@mohammedsuhailbasha4860
@mohammedsuhailbasha4860 4 года назад
Very nice explaination sir thank you so much sir
@CppNuts
@CppNuts 4 года назад
Thanks man..
@pradeexsu
@pradeexsu 4 года назад
Obviously nice video but i like this color combination with white and *cppnuts* Rupesh Bhaiya thanks
@CppNuts
@CppNuts 4 года назад
Good..😀
@jumbo999614
@jumbo999614 4 года назад
std::unique_ptr p4 = p3.release() doesn't work. So release() is for regular pointer only right?
@nidhalbouz975
@nidhalbouz975 3 года назад
Best expalanation of smart pointer i've ever seen
@CppNuts
@CppNuts 3 года назад
Thanks man..
@akashaggarwal2853
@akashaggarwal2853 3 года назад
Nice video but it will be wonderful if you can add some example of storing the array of object in unique pointer.
@Recordingization
@Recordingization Год назад
p2.reset(p4),the previous object belonging to p2 is deleted and the p4 becomes a null pointer ,is that correct?
@akmansr7149
@akmansr7149 3 года назад
I am getting this error on doing this - std::unique_ptr t1 = new Test (2000) ; error : conversion from 'Test*' to non-scalar type 'std::unique_ptr' requested Please help!!!!! Why doesn't = work here?
@shubrochakroborty5918
@shubrochakroborty5918 11 месяцев назад
Sir how move and release are different?
@vijayaraj7610
@vijayaraj7610 2 года назад
please do a video with implementing our own unique pointer
@ganeshjoshi1619
@ganeshjoshi1619 3 года назад
Thank you so much. More power to you ✌, keep going.
@vijayaraj7610
@vijayaraj7610 2 года назад
Thanks a lot for nice explanation.. Your videos are really good.. Thank you..
@CppNuts
@CppNuts 2 года назад
Glad you like them!
@ikramulmurad
@ikramulmurad 4 года назад
In 9:02, what is the problem if I make single pointer pointed by 2 unique_ptr?
@alexbutane5550
@alexbutane5550 4 года назад
Great video, easy to understand. i still got a problem tough.. i'm trying to allocate a private member vector of unique_ptr to a base class object ( std::vector m_objects ; ) and than to pushback derived classes into it trough a void function that gets nothing and returns nothing but it knows the vector member in the private section of the class because the cpp file belongs to its header file so i use ( m_objects.push_back(std::make_shared (); ) but i always get these linkage errors 2019 and 1120 and i don't know what to do anymore..
@D3athW1ng
@D3athW1ng 4 года назад
I'm confused how were you able to set explicit foo (int x): x{x} {} with curly brackets instead of () ?
@CppNuts
@CppNuts 4 года назад
This is also one of the way to do it.
@treyquattro
@treyquattro 4 года назад
universal initialization using {} is the preferred method. The C++ committee has gone through many attempts to get initialization of all types of object correct, and it still has problems in certain circumstances. Nicolai Josuttis (C++ committee member and prolific book writer and conference presenter) informs us that {} should be used everywhere, even to the extent of doing e.g. for (int i{0}; i < limit; ++i) ... I think most people (including me) will continue to write for (int i = 0; ...) in that instance but everywhere else, for local, member, and global/static variable initialization, {} is a good habit to get into.
@anirudhsharma2384
@anirudhsharma2384 2 года назад
Is it a memory leak if main exits? I believe no, because if main exits, the entire program exits and memory is freed and given back to OS.
@anirudhsharma2384
@anirudhsharma2384 2 года назад
@sara That's what my point is. In your example 2 your program is not exiting main, while 1 will keep looping indefinitely inside main. My doubt is Int main() { Int *p = new int(10); } Is it a memory leak after program exits? I believe no! OS takes away memory allocated to your a.out
@anirudhsharma2384
@anirudhsharma2384 2 года назад
@@13taras The point of calling delete everytime is to make most efficient use of memory allocated to the program. If we free memory, the freed memory can then be reused by our program and we do not run out of memory.
@TheJank7
@TheJank7 3 года назад
Can someone explain me what happens to p4 in line 45 with p2.reset(p4); ? p2 has the ownership of the object of p4 then?
@arvindganesh7539
@arvindganesh7539 3 года назад
I thought destructors are called automatically when scope ends. Why is destructor not called in your first run? It has something to do with stack/heap allocation? I'm guessing that when you declare class object with new, only the reference is destroyed at end of scope, not the object. And destructors are called only when the object is destroyed.
@saurabhpant
@saurabhpant 2 года назад
First example will be in heap bcs of dynamic allocation bcs of pointer
@amanagrahari8511
@amanagrahari8511 4 года назад
Sir I want to do specialization in a language. Which language should I prefer for campus placement and for future . Is java better or c++ or other one.
@CppNuts
@CppNuts 4 года назад
Campus placement then java/cpp both are good. And after that see what companies gives you after you join. And master that language.
@amanagrahari8511
@amanagrahari8511 4 года назад
@@CppNuts thank you so much 🙏🙏 for your suggestion.
@181Ravikiran
@181Ravikiran 4 года назад
what all extensions are you using with the Visual studio code editors ? Thanks
@nolezquery1100
@nolezquery1100 3 года назад
can i ask what benefit run code, so importently in linux , as u even using virtual box !
@CppNuts
@CppNuts 3 года назад
I like to work in linux, it's just a thing.
@sushamasmitesh4929
@sushamasmitesh4929 4 года назад
What happen if I do delete p after p3.get(): Foo *p = p3.get(); delete p; what happens with p3? Is it still point to the object in which it was returned?
@JayAnAm
@JayAnAm 4 года назад
It still points to the adress in memory, that you deleted. Your program will crash when the p3 gets out of scope and the deleter is called, cause there is nothing left to delete.
@aseemsameer7281
@aseemsameer7281 2 года назад
@@JayAnAm Did you try to execute? It doesn't crash. p is a pointer of type Foo *. It is not a unique pointer, and it holds the address to the object of p3, so p and p3 are 2 different entities. Did you ever see a destructor called for a object pointer being deleted?
@amallaltl1159
@amallaltl1159 3 года назад
How come a person forgets to call delete. That is so weird.
@CppNuts
@CppNuts 3 года назад
Believe me It is good candidate to be forgotten.
@JayAnAm
@JayAnAm 4 года назад
Not bad, but you have to be a bit more careful when explaining things like move, espcially when your viewers are not familiar with lvalues and rvalues. std::move doesnt move anything, it is casting into rvalue. And p1 is not a nullpointer after std::move, it is an empty object, just the raw pointer that is wrapped by p1 is nullptr.
@CppNuts
@CppNuts 4 года назад
I don't think its defined that after performing move what remains. Actually should be is undefined behavior.
@JayAnAm
@JayAnAm 4 года назад
@@CppNuts The state of the p1 after move (which is actually a cast) is unspecified, but it is not nullptr.
@CppNuts
@CppNuts 4 года назад
@@JayAnAm yaa.. Is it like i mentioned it will be nullptr.
@JayAnAm
@JayAnAm 4 года назад
@@CppNuts No. Set a breakpoint and see it by yourself in the debugger - the raw pointer is a nullptr, not the unique pointer.
@treyquattro
@treyquattro 4 года назад
@@JayAnAm I took Rupesh (?) to mean that the contained raw pointer was set to nullptr after the move, but then I know the subject matter. Making it crystal clear and unambiguous to less experts wouldn't hurt.
@GARV_K_JAIN
@GARV_K_JAIN 4 года назад
What is the difference btw move,get, reset and release..
@JayAnAm
@JayAnAm 4 года назад
std::move : cast object into rvalue get: returns the raw poiner, wrapped by smart pointer reset: Replaces the object managed by the smart pointer release : Releases the ownership of the managed object
@swatigupta6881
@swatigupta6881 2 года назад
If I have a class with unique_ptr as a member, How to write a copy constructor for this class??? class A { std::unique_ptr< int > up_; public: A( const A& a ) {}; }
@181Ravikiran
@181Ravikiran 4 года назад
get deleter video ?
@akyblr
@akyblr 2 года назад
Many things are wrongly explained(at 5:55) in this video.. So please avoid it.
@CppNuts
@CppNuts 2 года назад
Like what?
@sunandaagt
@sunandaagt 3 года назад
I think you no need to be over conscious of your voice part..... because of this drama, your video content does not come out well. Concentrate on content and good explanation, instead of making singing kind of voice.
@CppNuts
@CppNuts 3 года назад
How many videos did you watched? And what is the problem is singing?
@surkewrasoul4711
@surkewrasoul4711 2 месяца назад
Yea you can, Just use move(ptr)😎
Далее
Shared Pointer In C++
12:25
Просмотров 45 тыс.
unique_ptr: C++'s simplest smart pointer
11:54
Просмотров 45 тыс.
无意间发现了老公的小金库 #一键入戏
00:20
Virtual Function In C++
15:08
Просмотров 35 тыс.
Smart Pointer In C++
8:28
Просмотров 65 тыс.
Weak Pointer In C++
16:47
Просмотров 26 тыс.
std array C++
13:02
Просмотров 74 тыс.
are "smart pointers" actually smart?
9:44
Просмотров 77 тыс.
Smart Pointers in C++ (Stop Using new?)
17:18
Просмотров 13 тыс.