QT 지식 모음
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
//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
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.