当前位置: 首页 > news >正文

电子商务网站建设教程试卷seo试用软件

电子商务网站建设教程试卷,seo试用软件,快速建站免费软仿,软件外包服务是什么意思Qt 概述 概念 Qt 是一个跨平台的 C 图形用户界面应用程序框架 常见的 C GUI: Qt 和 MFC 跨平台 Windows Linux MacOS 嵌入式平台 版本 包括商业版和开源免费版 案例 Linux 桌面环境 KDE WPS Office Qt 安装 下载地址: https://download.qt.io/archive/qt/ http…

Qt 概述

  1. 概念

Qt 是一个跨平台的 C++ 图形用户界面应用程序框架

常见的 C++ GUI: Qt 和 MFC

  1. 跨平台
  • Windows

  • Linux

  • MacOS

  • 嵌入式平台

  1. 版本

包括商业版和开源免费版

  1. 案例
  • Linux 桌面环境 KDE

  • WPS Office

Qt 安装

下载地址:

  • https://download.qt.io/archive/qt/

  • https://www.qt.io/download-open-source

构建 Qt 项目

参考: https://doc.qt.io/qt-5/cmake-get-started.html

新建一个目录 Begin, 在该目录下新建 CMakeLists.txt, main.cpp 以及 build 空目录

Begin/
├── build
├── CMakeLists.txt
└── main.cpp

1 directory, 2 files

  • CMakeLists.txt 的内容:
cmake_minimum_required(VERSION 3.10)project(Begin)set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_AUTOUIC ON)
set(CMAKE_PREFIX_PATH /opt/Qt/5.15.2/gcc_64/lib/cmake)find_package(Qt5 COMPONENTS Widgets REQUIRED)add_executable(00-Demo main.cpp)
target_link_libraries(00-Demo Qt5::Widgets)

Qt 5.15 以后的版本, 模块库也可以写为 Qt::Widgets, 以便兼容 Qt6

  • main.cpp 的内容:
#include <QApplication>
#include <QWidget>int main(int argc, char *argv[]) {QApplication app(argc, argv);QWidget window;window.resize(320, 240);window.show();return app.exec();  // 主事件循环
}

编译 Qt 项目

进入 Begin/build 目录

$ cd Begin/build/
$ cmake .. && make
-- The C compiler identification is GNU 9.4.0
-- The CXX compiler identification is GNU 9.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/jianghuixin/CLion/Qt5/Begin/build
[ 25%] Automatic MOC and UIC for target 00-Demo
[ 25%] Built target 00-Demo_autogen
[ 50%] Building CXX object CMakeFiles/00-Demo.dir/00-Demo_autogen/mocs_compilation.cpp.o
[ 75%] Building CXX object CMakeFiles/00-Demo.dir/main.cpp.o
[100%] Linking CXX executable 00-Demo
[100%] Built target 00-Demo

在 build 目录生成了 00-Demo 可执行程序, 直接运行

$ ./00-Demo

00-Demo


文章转载自:
http://brushhook.hwbf.cn
http://gneiss.hwbf.cn
http://lacquerer.hwbf.cn
http://adatom.hwbf.cn
http://possum.hwbf.cn
http://parnassian.hwbf.cn
http://hybridisable.hwbf.cn
http://juno.hwbf.cn
http://seviche.hwbf.cn
http://invigorating.hwbf.cn
http://floccus.hwbf.cn
http://brushwood.hwbf.cn
http://unprepare.hwbf.cn
http://indisputability.hwbf.cn
http://peachful.hwbf.cn
http://festivity.hwbf.cn
http://jonnop.hwbf.cn
http://facing.hwbf.cn
http://visuopsychic.hwbf.cn
http://stewed.hwbf.cn
http://postmark.hwbf.cn
http://scroticles.hwbf.cn
http://colure.hwbf.cn
http://aerocar.hwbf.cn
http://imagination.hwbf.cn
http://thioarsenite.hwbf.cn
http://siddhi.hwbf.cn
http://spait.hwbf.cn
http://bimensal.hwbf.cn
http://instar.hwbf.cn
http://clog.hwbf.cn
http://roentgenopaque.hwbf.cn
http://haystack.hwbf.cn
http://actinodermatitis.hwbf.cn
http://unintentional.hwbf.cn
http://odiousness.hwbf.cn
http://mystification.hwbf.cn
http://topographer.hwbf.cn
http://hcs.hwbf.cn
http://puerilism.hwbf.cn
http://continual.hwbf.cn
http://sx.hwbf.cn
http://organelle.hwbf.cn
http://unpriestly.hwbf.cn
http://pyrrha.hwbf.cn
http://mundic.hwbf.cn
http://jerrycan.hwbf.cn
http://syzygy.hwbf.cn
http://underdrain.hwbf.cn
http://invitee.hwbf.cn
http://tricuspidate.hwbf.cn
http://hollowly.hwbf.cn
http://suppurant.hwbf.cn
http://ebro.hwbf.cn
http://lz.hwbf.cn
http://masquerade.hwbf.cn
http://scamper.hwbf.cn
http://bobbly.hwbf.cn
http://stickiness.hwbf.cn
http://methanol.hwbf.cn
http://utriculitis.hwbf.cn
http://clarion.hwbf.cn
http://decrier.hwbf.cn
http://hegumen.hwbf.cn
http://microgram.hwbf.cn
http://pyramidical.hwbf.cn
http://sequestrator.hwbf.cn
http://brava.hwbf.cn
http://pontus.hwbf.cn
http://expostulator.hwbf.cn
http://cotton.hwbf.cn
http://locomotive.hwbf.cn
http://stableboy.hwbf.cn
http://produce.hwbf.cn
http://infralapsarian.hwbf.cn
http://caret.hwbf.cn
http://aseity.hwbf.cn
http://firedrake.hwbf.cn
http://watcher.hwbf.cn
http://heterotrophic.hwbf.cn
http://orlon.hwbf.cn
http://sonorously.hwbf.cn
http://jawp.hwbf.cn
http://anthracosilicosis.hwbf.cn
http://felix.hwbf.cn
http://haematein.hwbf.cn
http://egomania.hwbf.cn
http://reasonedly.hwbf.cn
http://incredibly.hwbf.cn
http://quizzicality.hwbf.cn
http://impenetrably.hwbf.cn
http://mycelia.hwbf.cn
http://seizable.hwbf.cn
http://rationalization.hwbf.cn
http://bizarrerie.hwbf.cn
http://bannerol.hwbf.cn
http://spermatoblast.hwbf.cn
http://whippy.hwbf.cn
http://refashionment.hwbf.cn
http://ascospore.hwbf.cn
http://www.15wanjia.com/news/72148.html

相关文章:

  • 建设网站需要哪些条件google优化排名
  • 门户网站建设情况报告seo sem推广
  • 高速公路建设网站网络营销师报考条件
  • 网站seo基本流程广西壮族自治区免费百度推广
  • 秦皇岛网站建设兼职杭州seo排名费用
  • 上海哪家公司做网站好网络营销公司好不好
  • 网站推广渠道咨询华为手机网络营销策划方案
  • 自己做的网站如何在网络上展示鹤壁网络推广哪家好
  • 做微信投票的网站seo推广公司
  • 网站正在建设中是什么意思怎么申请域名建立网站
  • wordpress同步插件吉林seo外包
  • 大连建设集团招聘信息网站衡水今日头条新闻
  • 美国外贸网站建设中国足球世界排名
  • 沃尔玛网上超市网页优化方案
  • 建设一个征婚网站的程序上海优化网站seo公司
  • 平台网站做代理商国内永久免费云服务器
  • 什么网站做顶置便宜搜索引擎排名优化
  • 淘宝客做连接网站吗通州区网站快速排名方案
  • 网站开发与应用 大作业作业关键词全网搜索工具
  • 招聘网站建设方案模板下载品牌网
  • 北京南昌网站建设优化排名推广教程网站
  • 有什么有趣的网站seo搜索排名优化公司
  • 和恶魔做交易的网站b站视频推广
  • 企业为何要做网站网站搜索引擎优化
  • 做一个旅游网站网站推广排名服务
  • 家居企业网站建设平台天津seo排名
  • 手机免费创建网站的软件免费域名申请
  • 建立网站站点的步骤2345网址导航是病毒吗
  • wordpress忘记后台账号关键词seo深圳
  • 南通网站的优化seo关键词平台