摘要: C++11的Lambda表达式是什么 Lambda表达式称为匿名函数,所谓匿名函数,有以下两方面的含义 Lambda表达式是函数的一种,从功能上看,Lambda表达式和函数的作用完全一样(虽然Lambda表达式实质是一个类),使用Lambda表达式完成的功能,也可以使用普通函数来完成; Lambda 阅读全文
posted @ 2021-09-08 17:56 China Soft 阅读(957) 评论(0) 推荐(0) 编辑
摘要: QVector,是Qt对所有数组的封装,比如我们想要一个int类型数组,我们原先会写int array[10],我们在Qt里可以写QVector <int> array(10),赋值的时候,我们依然可以照旧array[5]=4;想获取某一项的值也还可以array[9],也就是说,原来的特性我们还可以 阅读全文
posted @ 2021-09-08 16:15 China Soft 阅读(1621) 评论(0) 推荐(0) 编辑
摘要: https://gitee.com/mirrors/boolinq 阅读全文
posted @ 2021-09-08 16:05 China Soft 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 1、代码: void MainWindow::on_pushButton_clicked() { QString str = "5"; QString str01 = str.leftJustified(3, '0'); qDebug() << str01; str01 = str.rightJus 阅读全文
posted @ 2021-09-08 13:55 China Soft 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 一、 使用库:https://github.com/bricke/Qt-AES 二、代码举例 #include <QCryptographicHash> void MainWindow::on_pushButton_clicked() { QAESEncryption encryption(QAES 阅读全文
posted @ 2021-09-08 12:02 China Soft 阅读(766) 评论(0) 推荐(0) 编辑
摘要: https://dapr.io/ https://docs.microsoft.com/zh-cn/dotnet/architecture/dapr-for-net-developers/getting-started https://www.cnblogs.com/zhao-yi/p/147678 阅读全文
posted @ 2021-09-08 09:59 China Soft 阅读(56) 评论(0) 推荐(0) 编辑
摘要: https://sql.js.org/examples/GUI/index.html https://sql.js.org/#/ 阅读全文
posted @ 2021-09-08 09:52 China Soft 阅读(61) 评论(0) 推荐(0) 编辑