/
githubmirror
/
CPlusPlusThings
Обзор
Документация
Войти
/
githubmirror
/
CPlusPlusThings
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
basic_content/static/static_funciton.cpp
14 строк
246 B
zhangxing
support bazel complie this project and format code.
30 мар 2024, 17:00
30 мар 2024, 17:00
3c8a3f2
Код
Авторство
О чём код?
#include <iostream> using namespace std; class Apple { public: // static member function static void printMsg() { cout << "Welcome to Apple!"; } }; // main function int main() { // invoking a static member function Apple::printMsg(); }