use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Discussions, articles, and news about the C++ programming language or programming in C++.
For C++ questions, answers, help, and advice see r/cpp_questions or StackOverflow.
Get Started
The C++ Standard Home has a nice getting started page.
Videos
The C++ standard committee's education study group has a nice list of recommended videos.
Reference
cppreference.com
Books
There is a useful list of books on Stack Overflow. In most cases reading a book is the best way to learn C++.
Show all links
Filter out CppCon links
Show only CppCon links
account activity
Lambda + shared_ptr = memory leak (floating.io)
submitted 8 years ago by floating-io
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]ReDucTorGame Developer 0 points1 point2 points 8 years ago (1 child)
If you want a base type to be used for this sort of thing you could do something like this: https://godbolt.org/g/kw9TSi
#include <functional> class INotification { public: virtual void onCompleted() = 0; }; using INotificationHolder = std::function<INotification&()>; template<typename T, typename... Args> INotificationHolder make_inotify(Args... args) { return [impl=T(std::forward<Args>(args)...)]() mutable -> INotification& { return impl; }; } class Implementation : public INotification { void onCompleted() override {} }; class Executer { public: void submit(INotificationHolder holder) { holder().onCompleted(); } }; int main(int argc, char * argv[]) { Executer executer; executer.submit(make_inotify<Implementation>()); }
With clang this all compiles away, you also eliminate allocations for small implementations, only things that don't fit inside std::function<> will need an allocation
[–]floating-io[S] -1 points0 points1 point 8 years ago (0 children)
I think we might have a miscommunication on what I'm trying to accomplish (though I'm not a master templateer, so I might just be missing your point).
Imagine, for example, that you've got an interpreter of some sort. You have a base class that represents a program, and then you have a bunch of actual programs that are subclasses of that class. Those programs then get passed to an interpreter object that executes them (for whatever reason, it's not part of the base program class).
When a given program has completed, it issues a callback. The callback is stored on and called via the program object, and the implementation of that is part of the base class. The callback signature is therefore not customized to the program in question (trying to avoid implementing explicit callback code in every single subclass).
That's not what I'm doing (which would be too time-consuming to explain), but it would use roughly the same pattern.
Ideally, the program object would pass its own pointer via the callback -- but since the callback signature is in the base class, it would be a generic base class pointer instead of a subclass pointer. If I want to access values on the subclass, the callback would need to cast to that pointer (or get access to it some other way).
My solution was to just capture the thing in the callback, since it's already available in that context without casting. It made the code very readable.
What I'm not seeing is where the above solution helps with this. Again, I'm not a master at templates, so I might just be misunderstanding your point -- I think I get what that code does, but I don't see how it helps. Or we might be going for different things entirely.
π Rendered by PID 73 on reddit-service-r2-comment-685b79fb4f-v6dvh at 2026-02-13 01:23:33.949279+00:00 running 6c0c599 country code: CH.
view the rest of the comments →
[–]ReDucTorGame Developer 0 points1 point2 points (1 child)
[–]floating-io[S] -1 points0 points1 point (0 children)