Skip to content

Instantly share code, notes, and snippets.

@hsgw
Created January 20, 2014 18:17
Show Gist options
  • Save hsgw/8525754 to your computer and use it in GitHub Desktop.
Save hsgw/8525754 to your computer and use it in GitHub Desktop.
//foo.h
class foo {
public:
foo();
inline void hoge(){
printf("%f",v); //何故か0になる 多分初期化タイミングが違うけど何故?
};
private:
static const float v;
}
//foo.cpp
const float foo::v = 123.456f;
foo::foo(){
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment