QT 지식 모음

3049 단어
1. connect 함수의 SIGNAL은 버튼, 타이머, 기타 대상의 신호일 수 있다.다른 대상의 신호라면 대상은 현재 클래스에서 실례화해야 합니다.
 
2. Qt 데이터 유형 변환
1) int에서 QStringint a=10으로 전환합니다.QString b;b=QString::number(a)
2) QString 전환 intQString a = "120";int b;b=a.toInt();
 
3) 데이터 유형 변환char*str1 = "abc"
//char* to QString 방법 1: QString str2 = QString(QLatin1 String(str1).메서드 2: QString str2 = QString("%1").arg(str1);
//QString to char*char* str3 = str2.toLatin1.data(); 중국어가 포함된 경우:char* str3 = str2.toLocal8bit().data();string을 통해 회전:char* str3 = str2.toStdstring().c_str();//반환 값은 const char* 유형입니다.
string a = str2.toStdstring();//QString to stringQString b = QString::fromstdstring(a);//string to QString
char* c = a.c_str();//string to const char*string d(c);//char* to string
//int to string 방법 1: int aa=12;stringstream ss;ss방법2:stringstr=tostring(aa);
//string to int 방법1:istringstream is("12");int n;n<
메서드 2: int n = atoi(str.c str ());
 
3. 지정된 위치의 소수점을 보존한다
float a = 3.1415QString str = QString::number(a, 'f', 2)
 
4. 긴 배열 QVector 사용법:
QVector intVec;
intVec.append(1);
int num = intVec.data()[i];또는 int num = intVec.at(i);
intVec.remove(i);//몇몇 intVec를 삭제합니다.removeAt(i);intVec.remove(i,count);//i개부터 다음count개 요소 삭제
 
5. 같은 페이지의 모든 같은 유형의 컨트롤 찾기
const QObjectList list = ui->frame_>children();
for(int i=0; i){
    QObject *o = list.at(i);
    if(o->inherits("QCheckBox")){
        QCheckBox *b = qobject_cast(o);
        if(b->isChecked()){
            sn += (b->text()).append("#");
        }
    }else{
        continue;
    }
}

 
 
http://blog.51cto.com/11496263/1875393
https://blog.csdn.net/qq_42345394/article/details/80803092
Qt 신호 슬롯 + 함수 포인터
https://bbs.csdn.net/topics/392292112?page=1
http://www.job592.com/pay/ms/81205.html
https://blog.csdn.net/baidu_32262373/article/details/54969696
http://mobile.51cto.com/symbian-270982.htm

좋은 웹페이지 즐겨찾기