QT中的常用数据结构及函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了QT中的常用数据结构及函数相关的知识,希望对你有一定的参考价值。
参考技术A 1、QString2、QVariant
3、QStringList
4、QVector
5、QStack
6、QQueue
7、QList
8、QMap
QString 是qt中关于String的封装类,用于处理字符串。
'''
void testQString()
QString str1="hello";
qDebug()<<str1;
str1.append("word");
qDebug()<<str1;//"hello word"
qDebug()<<str1.indexOf("word");//5
QString str2="Hello";
qDebug()<<str2;
str2.fill('x');//"xxxxx"
qDebug()<<str2;
str2.fill('x',2);//"xx"
qDebug()<<str2;
qDebug()<<QString().isEmpty();//true
qDebug()<<QString("").isEmpty();//true
qDebug()<<QString(" ").isEmpty();//false
qDebug()<<QString("abc").isEmpty();//false
qDebug()<<QString().isNull();//true
qDebug()<<QString("").isNull();//false
qDebug()<<QString(" adc").isNull();//false
QString str3="Hello";
qDebug()<<str3;
qDebug()<<str3.left(3);//"hel"
qDebug()<<str3.mid(2,2);//"ll"
qDebug()<<str3.mid(2);//"llo"
qDebug()<<str3.right(4);//"ello"
QString str4="hello word";
qDebug()<<str4;//"hello word"
str4.remove(5,6);
qDebug()<<str4;//"hello"
QString str5="hello word";
str5.insert(5,QString("word"));
qDebug()<<str5;//"hello wordword"
QString str6="hello word";
QString re="you";
str6.replace("word",re);
qDebug()<<str6;//"hello you"
QString path="/user/local/bin/mapp";
qDebug()<<path;//"/user/local/bin/mapp"
QStringList list=path.split('/',QString::SkipEmptyParts);
qDebug()<<list;//("user,"local","bin","mapp")
QString str7="hello word";
qDebug()<<str7.startsWith("hello");//true
qDebug()<<str7.endsWith("word");//true
qDebug()<<QString("hello %1,helo you %2 ").arg("word").arg("hmf");//hello word,hello you hmf
qDebug()<<QString::localeAwareCompare("xxx","XXX");//-1
'''
QVariant 是万能变量,可以存取各种变量。
'''
void testQVariant()
QVariant var;
var.setValue(QString("hello word"));
qDebug()<<var;//QVariant(QString, "hello word")
QString data=var.toString();
qDebug()<<data;//"hello word"
// var.clear();
var.setValue(100);
qDebug()<<var;//QVariant(int, 100)
int d=var.toInt();
qDebug()<<d;//100
'''
QStringList 是存储QString类型的列表。
'''
void testQStringList()
QStringList stL;
stL<<"str1"<<"str2"<<"str3"<<"str4";
qDebug()<<stL;//("str1", "str2", "str3", "str4")
QString str1=stL.join("/");
qDebug()<<str1;//"str1/str2/str3/str4"
qDebug()<<stL.contains("str1");//true
qDebug()<<stL.indexOf("str2");//1
stL.append("str3");
stL.append("str4");
qDebug()<<stL;//("str1", "str2", "str3", "str4", "str3", "str4")
stL.removeDuplicates();
qDebug()<<stL;//("str1", "str2", "str3", "str4")
//遍历方法1
for (int i=0;i<stL.size();i++)
qDebug()<<stL.at(i);
//遍历方法2
QStringList::Iterator itr;
for(itr=stL.begin();itr!=stL.end();++itr)
qDebug()<<*itr;
'''
QVector 数组的模板类,本质是动态数组,存储方式是一片连续的内存空间。
'''
void testQVector()
QVector<QString> tV;
tV.append("Str1");
tV.append("str2");
tV.append("str3");
tV.append("str4");
qDebug()<<tV;//QVector("Str1", "str2", "str3", "str4")
tV.prepend("str0");
qDebug()<<tV;//QVector("str0", "Str1", "str2", "str3", "str4")
tV.push_back("str5");
qDebug()<<tV;//QVector("str0", "Str1", "str2", "str3", "str4", "str5")
tV.push_front("str00");
qDebug()<<tV;//QVector("str00", "str0", "Str1", "str2", "str3", "str4", "str5")
for(int i=0;i<tV.size();i++)
qDebug()<<tV.at(i);
QVector<QString>::Iterator itr;
for(itr=tV.begin();itr!=tV.end();itr++)
qDebug()<<*itr;
qDebug()<<tV.isEmpty();//false
qDebug()<<tV.at(0);//"str00"
qDebug()<<tV.value(3);//"str2"
qDebug()<<tV.size();//7
tV.pop_back();
qDebug()<<tV;//QVector("str00", "str0", "Str1", "str2", "str3", "str4")
tV.pop_front();
qDebug()<<tV;//QVector("str0", "Str1", "str2", "str3", "str4")
'''
QStack为qt中的栈模板类,继承于QVector,具有后进先出的特性。
'''
void testQStack()
QStack<QString> stack;
stack.push("str1");
stack.push("str2");
stack.push("str3");
stack.push("str4");
qDebug()<<stack;//QVector("str1", "str2", "str3", "str4")
qDebug()<<stack.pop();//"str4"
qDebug()<<stack;//QVector("str1", "str2", "str3")
qDebug()<<stack.top();//"str3"
qDebug()<<stack;//QVector("str1", "str2", "str3")
qDebug()<<stack.isEmpty();//false
qDebug()<<stack.size();//3
while(!stack.isEmpty())
qDebug()<<stack.pop();
'''
QQueue 是qt中的队列的模板类,同样继承自QVector,具有先进先出的特性。
'''
void testQueue()
QQueue<QString> qq;
qq.enqueue("str1");
qq.enqueue("str2");
qq.enqueue("str3");
qq.enqueue("str4");
'''
QList是qt中的链表的实现,同时可以按位置索引和快速插入删除数据。
'''
void testList()
QList<QString> ql;
ql.append("str");
ql.append("str1");
ql.append("str2");
ql.append("str3");
ql.append("str4");
ql.append("str5");
qDebug()<<ql;//("str", "str1", "str2", "str3", "str4", "str5")
for(int i=0;i<ql.size();i++)
qDebug()<<ql.at(i);
QList<QString>::Iterator itr;
for(itr=ql.begin();itr!=ql.end();itr++)
qDebug()<<*itr;
ql.pop_back();
qDebug()<<ql;//("str", "str1", "str2", "str3", "str4")
ql.pop_front();
qDebug()<<ql;//("str1", "str2", "str3", "str4")
qDebug()<<ql.size();//4
qDebug()<<ql.isEmpty();//false
'''
QMap 是qt中映射的模板类。就是字典。
'''
void testMap()
QMap<QString,int> map;
map["one"]=1;
map.insert("two",2);
map["three"]=3;
map["four"]=4;
map["five"]=5;
qDebug()<<map;//QMap(("five", 5)("four", 4)("one", 1)("three", 3)("two", 2))
qDebug()<<map.value("one");//1
qDebug()<<map["two"];//2
qDebug()<<map.contains("two");//true
qDebug()<<map.keys();//("five", "four", "one", "three", "two")
qDebug()<<map.values();//(5, 4, 1, 3, 2)
//数据遍历
QMapIterator<QString ,int> itr(map);
while(itr.hasNext())
itr.next();
qDebug()<<itr.key()<<itr.value();
'''
oracle常用函数及示例
学习oracle也有一段时间了,发现oracle中的函数好多,对于做后台的程序猿来说,大把大把的时间还要学习很多其他的新东西,再把这些函数也都记住是不太现实的,所以总结了一下oracle中的一些常用函数及示例,一是为了和大家分享,二是可以在以后工作中忘记了随时查阅。废话不多说,下面直接上函数。
一.单行函数
只处理单个行,并且为每行返回一个结果。
1.字符函数
(1)concat(str1,str2)字符串拼接函数
select concat(‘Hello ‘,‘World‘) from dual; --等价于 select ‘Hello ‘||‘World‘ from dual;
(2)initcap(str)将每个单词首字母大写,其他字母小写
select initcap(‘hello world!‘) from dual; --返回结果为‘Hello World!‘ select initcap(‘HELLO WORLD!‘) from dual; --返回结果为‘Hello World!‘
(3)instr(x,find_string[,start][,occurrence])返回指定字符串在某字符串中的位置,可以指定搜索的开始位置和返回第几次搜索出来的结果
----------搜索时下标从1开始计算 select instr(‘Hello World!‘,‘o‘) from dual;--从1位置开始搜索,返回第一次出现的o的位置,结果为5 select instr(‘Hello World!‘,‘o‘,6) from dual;--从6位置开始搜索,返回第一次出现的o的位置,结果为8 select instr(‘Hello World!‘,‘o‘,1,2) from dual;--从1位置开始搜索,返回第二次出现o的位置,结果为8
(4)length(str)返回表达式中的字符数
select length(‘Hello World!‘) from dual;--返回结果为12 select length(‘张三‘) from dual;--返回结果为2
(5)lengthb(str)返回表达式中的字节数
select lengthb(‘Hello World!‘) from dual;--返回结果为12 select lengthb(‘张三‘) from dual;--返回结果为6
(6)lower(str)将字符串转换为小写
select lower(‘Hello World!‘) from dual;
(7)upper(str)将字符串转换为大写
select upper(‘Hello World!‘) from dual;
(8)lpad(str,width[,pad_string])当字符串长度不够时,左填充补齐,可以指定补齐时用什么字符补齐,若不指定,则以空格补齐
select lpad(‘Hello World!‘,20) from dual;--返回结果为‘ Hello World!‘ select lpad(‘Hello World!‘,20,‘*‘) from dual;--返回结果为‘********Hello World!‘
(9)rpad(str,width[,pad_string])当字符串长度不够时,右填充补齐,原理同左填充
select rpad(‘Hello World!‘,20) from dual;--返回结果为‘Hello World! ‘ select rpad(‘Hello World!‘,20,‘*+‘) from dual;--返回结果为‘Hello World!*+*+*+*+‘
(10)ltrim(x[,trim_string])从字符串左侧去除指定的所有字符串,若没有指定去除的字符串,则默认去除左侧空白符
select ltrim(‘ Hello World! ‘) from dual;--返回结果为‘Hello World! ‘ select ltrim(‘***+*Hello World!***+*‘,‘*+‘) from dual;--返回结果为‘Hello World!***+*‘
(11)rtrim(x[,trim_string])从字符串右侧去除指定的所有字符串,原理同ltrim()
select rtrim(‘ Hello World! ‘) from dual;--返回结果为‘ Hello World!‘ select rtrim(‘***+*Hello World!***+*‘,‘*+‘) from dual;--返回结果为‘***+*Hello World!‘
(12)trim(trim_string from x)从字符串两侧去除指定的所有字符串
select trim(‘*+‘ from ‘***+*Hello World!***+*‘) from dual;
注意,ltrim()和rtrim()的截取集可以使多个字符,但trim的截取集只能有一个字符
select trim(‘*+‘ from ‘***+*Hello World!***+*‘) from dual;--错误,截取集只能有一个字符
(13)nvl(x,value)将一个NULL转换为另外一个值,如果x为NULL,则返回value,否则返回x值本身
insert into student values(7,‘猪猪‘,default,NULL); select nvl(address,‘北京市‘) from student;
(14)nvl2(x,value1,value2),如果x不为NULL,返回value1,否则,返回value2
select nvl2(address,‘有地址‘,‘无地址‘) from student;
(15)replace(x,search_string,replace_string),从字符串x中搜索search_string字符串,并使用replace_string字符串替换。并不会修改数据库中原始值
select replace(‘Hello World!‘,‘o‘,‘HA‘) from dual;
(16)substr(x,start[,length])返回字符串中的指定的字符,这些字符从字符串的第start个位置开始,长度为length个字符;如果start是负数,则从x字符串的末尾开始算起;如果 length省略,则将返回一直到字符串末尾的所有字符
select substr(‘Hello World‘,3) from dual; --返回结果为‘llo World‘ select substr(‘Hello World‘,-3) from dual;--返回结果为‘rld‘ select substr(‘Hello World‘,3,2) from dual;--返回结果为‘ll‘ select substr(‘Hello World‘,-7,4) from dual;--返回结果为‘o Wo‘
2.数值函数
(1)abs(value)返回value的绝对值
select abs(-10) from dual;--返回结果为10
(2)ceil(value)返回大于等于value的最小整数
select ceil(2.3) from dual; --返回结果为3
(3)floor(value)返回小于等于value的最大整数
select floor(2.3) from dual; --返回结果为2
(4)trunc(value,n)对value进行截断,如果n>0,保留n位小数;n<0,则保留-n位整数位;n=0,则去掉小数部分
select trunc(555.666) from dual; --返回结果为555,不加n时默认去掉小数部分 select trunc(555.666,2) from dual;--返回结果为555.66 select trunc(555.666,-2) from dual;--返回结果为500
(5)round(value,n)对value进行四舍五入,保存小数点右侧的n位。如果n省略的话,相当于n=0的情况
select round(555.666) from dual;--返回结果为556,不加n时默认去掉小数部分 select round(555.666,2) from dual;--返回结果为555.67 select round(555.666,-2) from dual;--返回结果为600
注意:1.trunc和round用法类似,只不过trunc是硬生生截取,并不进行四舍五入,而round进行截取时四舍五入
2.都还可以对日期的截取,可以参考写的日期函数笔记
select round(sysdate,‘year‘) from dual; select trunc(sysdate,‘year‘) from dual;
3.转换函数
将值从一种类型转换成另外一种类型,或者从一种格式转换为另外一种格式
(1)to_char(x[,format]):将x转化为字符串。 format为转换的格式,可以为数字格式或日期格式
select to_char(‘12345.67‘) from dual; --返回结果为12345.67 select to_char(‘12345.67‘,‘99,999.99‘) from dual; --返回结果为12,345.67
(2)to_number(x [, format]):将x转换为数字。可以指定format格式
select to_number(‘970.13‘) + 25.5 from dual; select to_number(‘-$12,345.67‘, ‘$99,999.99‘) from dual;
(3)cast(x as type):将x转换为指定的兼容的数据库类型
select cast(12345.67 as varchar2(10)),cast(‘05-7月-07‘ as date), cast(12345.678 as number(10,2)) from dual;
(4)to_date(x [,format]):将x字符串转换为日期
select to_date(‘2012-3-15‘,‘YYYY-MM-DD‘) from dual
二.聚集函数
1.常用函数
(1)avg(x):返回x的平均值
select avg(grade) from sc;
(2)count(x):返回统计的行数
select count(name) from sc;
(3)max(x):返回x的最大值
select max(grade) from sc;
(4)min(x):返回x的最小值
select min(grade) from sc;
(5)sum(x):返回x的总计值
select sum(grade) from sc;
2.对分组行使用聚集函数
对分组后的行使用聚集函数,聚集函数会统计每组中的值,对于每组分别统计后返回一个值。
示例
--按照职位分组,求出每个职位的最高和最低工资 select job ,max(sal),min(sal) from emp group by job order by job;
注意:1.分组时select子句后边的列名必须与group by子句后的列名一致,除非是聚合函数
select deptno,avg(sal) from EMP;--错误,因为deptno不是聚集函数,也不是group by后面跟的列名
2.不能使用聚集函数作为WHERE子句的筛选条件
select deptno from emp where avg(sal)>1000;--错误
3.分组后,需要使用条件进行筛选,则使用having过滤分组后的行,不能使用where,where只能放在group by前面。
select deptno, avg(sal) from emp where deptno<>10 group by deptno having avg(sal) > 900;
以上是关于QT中的常用数据结构及函数的主要内容,如果未能解决你的问题,请参考以下文章