上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 17 下一页
摘要: 使用命令: pip -V 或 pip3 -V 阅读全文
posted @ 2019-10-16 10:33 小大大小 阅读(2554) 评论(0) 推荐(0) 编辑
摘要: Python使用Tensorflow出现错误: UserWarning: The default mode, 'constant', will be changed to 'reflect' in skimage 0.15. warn("The default mode, 'constant', w 阅读全文
posted @ 2019-10-16 10:29 小大大小 阅读(655) 评论(0) 推荐(0) 编辑
摘要: 在head标签中添加body属性设置: <head><style>body{background:url(timg1.jpg) top left;background-size:100%;}</style></head> 阅读全文
posted @ 2019-09-20 13:53 小大大小 阅读(23227) 评论(0) 推荐(0) 编辑
摘要: 在head标记中添加html,body{height:100%;}即可。 实例如下 <head><style>html,body{height:90%;}</style></head> 注意: html{height:100%}的高度是相对浏览器高度来说的。 如果因为背景图片或其他原因,100%还是 阅读全文
posted @ 2019-09-20 11:48 小大大小 阅读(2662) 评论(1) 推荐(0) 编辑
摘要: 在HTML中让两个div并排显示,通常情况下有三种实现方式,包括: (1)设置为行内样式,display:inline-block (2)设置float浮动 (3)设置position定位属性为absolute 以下为三种方式的具体实现代码: 个人觉得float浮动方式比较好用。 1、设置每个div 阅读全文
posted @ 2019-09-20 11:41 小大大小 阅读(43131) 评论(0) 推荐(1) 编辑
摘要: 使用即可: s1.equals(s2) 如果使用场景: if(s1==s2){} 这样使用可能会出现判断无效的情况。 使用if(s1.equals(s2)){}就可以了。 阅读全文
posted @ 2019-09-20 11:36 小大大小 阅读(5629) 评论(0) 推荐(0) 编辑
摘要: 使用session在jsp页面之间传递多维数组:发送数据的jsp页面:int [][] form_number=new int[4][4]; session.setAttribute("se_form_number",form_number);接收数据的jsp页面:int [][] data = ( 阅读全文
posted @ 2019-09-20 11:31 小大大小 阅读(676) 评论(0) 推荐(0) 编辑
摘要: 安装好MySQL,建好数据表的前提下。 先定义一个数据库管理的cpp文件和头文件。 MySQLManager.h 文件: MySQLManager.cpp 文件: main函数: 阅读全文
posted @ 2019-09-18 19:10 小大大小 阅读(11215) 评论(0) 推荐(1) 编辑
摘要: //头文件 #include "mysql.h" //函数定义 // 执行sql语句, 包括增加、删除、更新数据 bool ExecuteSql(MYSQL m_mysql,const char * sql) { if (mysql_query(&m_mysql, sql)) { // 打错误log 阅读全文
posted @ 2019-09-18 18:59 小大大小 阅读(7697) 评论(0) 推荐(0) 编辑
摘要: 使用c_str()函数 c_str函数的返回值是const char*。c_str()函数返回一个指向正规C字符串的指针, 内容与本string串相同. 这是为了与c语言兼容,在c语言中没有string类型,故必须通过string类对象的成员函数c_str()把string 对象转换成c中的字符串样式。举个栗子: String st = "insert into chuang values ('" 阅读全文
posted @ 2019-09-18 18:43 小大大小 阅读(4374) 评论(1) 推荐(2) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 17 下一页