Search Results

0
votes

Is it safe to pass a pointer to a method as a member of a record?

It is safe but there are two issues that you should be aware about : Records that declared as local variables are stored in the stack and they go away when the function returns. You should …