logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

虚拟机上安装Linux系统,报错信息:VMware无法连接XXX,因为主机上没有相应的设备

报错信息:(1)VMware无法连接floppy0,因为主机上没有相应的设备(2)VMware无法连接sata0:1,因为主机上没有相应的设备              VMware无法连接floppy0,因为主机上没有相应的设备。解决办法:        floppy0是软盘,

C++ string类的+与+=运算符

来说一说C++ string类的运算符+ 与 运算符 +=一、string对象的运算符+和运算符+=效率差很多string str,a;str=str+a;str+=a;以上两句str=str+a; 与str+=a;看起来差不多,其实效率差很多。今天在力扣上写代码,同一道题,同样的代码,差别就是我把str+=a;改成了str=str+a;运行时间翻了倍,如图:虽说力扣上的运行时间会有波动,但也不至

#c++
Android Studio报错:The binary version of its metadata is 1.5.1, expected version is 1.1.15.

报错信息:Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.5.1, expected version is 1.1.15.解决办法1:将build

#gradle#android studio#android +1
Qt报错“QSqlDatabase: QMYSQL driver not loaded“的解决方案

        Qt和MySQL安装好了,在Qt里按照Qt连接MySQL数据库的步骤使用MySQL的时候,报错“QSqlDatabase: QMYSQL driver not loaded”。如图:                     

#mysql#数据库
Could not determine the dependencies of task ‘:app:compileDebugJavaWithJavac‘ Could not resolve all

问题android studio 报错:Could not determine the dependencies of task ‘:app:compileDebugJavaWithJavac’. >Could not resolve all task dependencies for configuration ‘:app:debugCompileClasspath’.  &nb

#android#android-studio
到底了