Skip to content

Instantly share code, notes, and snippets.

View cezheng's full-sized avatar

Ce Zheng cezheng

  • Sunnyvale, California
View GitHub Profile
@cezheng
cezheng / memo.md
Last active August 10, 2016 13:22
C++11 behaviour memo

Scoped static variable

Constructed the first time the program goes to the line of its declaration. Thread safe.

#include <iostream>

class A {
public:
  A(int i) {
    std::cout<<"constructor"<<i<<std::endl;