Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
boost::shared_ptr<base>& arg
//g++ 5.4.0 // Пояснить, почему данный код собирается. // Реализовать свой собственный шаблонный класс X<T>, обладающий аналогичным поведением // (в том числе для случая, когда X<T> не содержит члена T* в явном виде). #include <iostream> #include <boost/shared_ptr.hpp> struct A{ int a = 10; }; struct B:public A{ int b = 20; }; int test(const boost::shared_ptr<A>& aptr) { return 0; } int main() { boost::shared_ptr<B> bptr(new B); test(bptr); }
run
|
edit
|
history
|
help
0
DoubleListInt
顺序表的实现——动态分配
Good pairs
LIS_NEW
selection_sort
CharSearch
Guess Number
Ternary operator - warnings about unsued values
congruence modulo equations (together with a simple BigInteger class)
poker.hpp