/
githubmirror
/
CPlusPlusThings
Обзор
Документация
Войти
/
githubmirror
/
CPlusPlusThings
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
basic_content/static/static_variable.cpp
21 строка
229 B
zhangxing
support bazel complie this project and format code.
30 мар 2024, 17:00
30 мар 2024, 17:00
3c8a3f2
Код
Авторство
О чём код?
// variables inside a class #include <iostream> using namespace std; class GfG { public: static int i; GfG(){ // Do nothing }; }; int GfG::i = 1; int main() { GfG obj; // prints value of i cout << obj.i; }