码迷,mamicode.com
首页 >  
搜索关键字:error correct system    ( 79212个结果
java注释
注释 单行注释 //+注释eg://sout是输出语句System.out.println();的快捷输入法 多行注释 /* 注释 */eg:/* 多行注释 多行注释 多行注释 */ 文档注释 /** JavaDoc */和JavaDoc联合使用,一般进大公司用得着。 ...
分类:编程语言   时间:2021-04-06 15:07:48    阅读次数:0
MySQLdb._exceptions.OperationalError: (2026, 'SSL connection error: unknown error number')
MySQLdb._exceptions.OperationalError: (2026, 'SSL connection error: unknown error number') 问题发生在我远程连接数据库的时候,我使用的是MySQLdb 但是一直报错 连接我自己的数据库是没有问题的 *原因是 p ...
分类:数据库   时间:2021-04-06 14:59:26    阅读次数:0
AppDomain实现【插件式】开发
前言: 近期项目中需要实现“热插拔”式的插件程序,例如:定义一个插件接口;由不同开发人员实现具体的插件功能类库;并最终在应用中调用具体插件功能。 此时需要考虑:插件执行的安全性(隔离运行)和插件可卸载升级。说到隔离运行和可卸载首先想到的是AppDomain。 那么AppDomain是什么呢? 一、A ...
分类:移动开发   时间:2021-04-06 14:51:16    阅读次数:0
Mybatis报错Cannot find class: com.mysql.cj.jdbc.Driver排查踩坑记录
初次学习mybatis,跑一个最简单的demo,然而报错: java.sql.SQLException: Error setting driver on UnpooledDataSource. Cause: java.lang.ClassNotFoundException: Cannot find ...
分类:数据库   时间:2021-04-06 14:48:09    阅读次数:0
wcf-学习
将服务寄宿与控制台: using System; using System.Collections.Generic; using System.Linq; using System.ServiceModel; using System.ServiceModel.Description; using ...
分类:其他好文   时间:2021-04-06 14:33:05    阅读次数:0
WPF 控件绑定后台实体类实例
先创建后台实体类 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 using System. ...
分类:Windows程序   时间:2021-04-06 14:29:51    阅读次数:0
计蒜客 T1167 素数回文数的个数
水题~。 int n; bool isprime(int x) { if(x<2) return false; for(int i=2;i*i<=x;i++) if(x % i == 0) return false; return true; } bool palindrome(int x) { i ...
分类:其他好文   时间:2021-04-06 14:25:50    阅读次数:0
idea使用
1.main函数快捷键 psvm 2.system.out.printLn sout(相当于eclipse syso) 3.ctrl + alt + t == try catch,意识是surround with try catch, 但是如果要直接写可以"".try直接会提示 4.alt+inse ...
分类:其他好文   时间:2021-04-05 12:43:06    阅读次数:0
XWAF安装遇到的坑
存在的问题:需要的编译环境没有安装配置好的话出现下面的问题: 1、error: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools": https://visualstudi ...
分类:其他好文   时间:2021-04-05 12:34:37    阅读次数:0
git历史回退
现在,你已经学会了修改文件,然后把修改提交到Git版本库,现在,再练习一次,修改readme.txt文件如下: Git is a distributed version control system. Git is free software distributed under the GPL. 然 ...
分类:其他好文   时间:2021-04-05 12:32:31    阅读次数:0
79212条   上一页 1 ... 59 60 61 62 63 ... 7922 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!