Skip to content

Instantly share code, notes, and snippets.

@jitanghu
Last active November 16, 2017 04:21
Show Gist options
  • Save jitanghu/5770d2a00103c4f68f0145f308329d7f to your computer and use it in GitHub Desktop.
Save jitanghu/5770d2a00103c4f68f0145f308329d7f to your computer and use it in GitHub Desktop.
#include "B.hpp"
class A {
public:
A(int sz) { sz_ = sz; v = new B[sz_]; }
~A() { delete v; }
private:
B *v;
int sz_;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment