⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 uratest.cpp

📁 upnpsdk-1.0.4.tar.gz Intel UPnP SDK Source
💻 CPP
字号:
#include "uratest.h"static UraHello uratest_s;UraHello::UraHello(void){        printf("Constructor for UraHello Class \n");}UraHello::~UraHello(void){    printf("Destructor for UraHello Class\n");}void UraHello::world(void){    printf("Hello world %d\n", foo);}intmain(int argc, char *argv[]){        int rettt;	UraHello uratest;        printf("Calling Hello.world\n");        uratest.world();        printf("after world\n");	printf("static member call\n");	uratest_s.world();	printf("static member term\n");        return 0 ;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -