其他分享
首页 > 其他分享> > Qt小知识点

Qt小知识点

作者:互联网

一、Qt中多个源文件调用同一个参数或变量
eg:调用main.cpp中的参数x:①在main.cpp的main函数外定义x,并extern int y = x,即可完成

二、setText的文本转换
setText只能输出字符串,所以在使用时需要将文本转换为字符串。
eg:

1、强制转换
int x = 10;
label -> setText(QString::number(x));
2、本身是QString类型
直接setText即可。

三、Qt输出数据

#include<iostream>
std::cout << "notfind" << std::endl;
//与c++输出无异

四、 Qt中源文件间函数相互调用(源文件之间公用结构体时类似使用)
1、首先定义一个头文件maxx.h

#ifndef MAXX_H
#define MAXX_H
int maxx(int a,int b);
#endif // MAXX_H

2、找一个写一个cpp源文件来更改这个函数

#include<iostream>
#include<QApplication>
#include<maxx.h>//注意加上头文件

int maxx(int a, int b){//定义函数
    return a > b ? a : b;
}

3、使用该函数

//直接是使用就好啦
#include<maxx.h>
int y = maxx(1,2);
std::cout << y << std::endl;
//输出结果为2

标签:知识点,maxx,Qt,int,setText,源文件,include
来源: https://blog.csdn.net/m0_52223599/article/details/122376040