84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
项目是基于QT开发,项目需要对一些字符串命令进行比较,因此我打算封装一个东西,它包含我可以用到的所有字符串命令,最好是一个单独的类,我以前了解Java中可以封装一个类,包含静态对象,可以用: 类名.对象名 的方式使用 但换到qt我有些疑惑了,求教,谢谢。
认证0级讲师
经过测试,现将方法写出: 首先需要建一个类,可以继承QObject类,也可以不继承,只是一个类,建立的方法可以是手动,也可用开发环境的菜单。我这里以Command类为例。 修改好后: command.h
#ifndef COMMAND_H #define COMMAND_H #include <QString> class Command { public: const static QString TEMP; }; #endif // COMMAND_H
command.cpp
#include "command.h" const QString Command::TEMP="fuck the world";
经过测试,现将方法写出:
首先需要建一个类,可以继承QObject类,也可以不继承,只是一个类,建立的方法可以是手动,也可用开发环境的菜单。我这里以Command类为例。
修改好后:
command.h
command.cpp