码迷,mamicode.com
首页 >  
搜索关键字:hid    ( 4513个结果
64 JSP 和 servlet 有什么区别?
JSP 和 servlet 有什么区别? 答: 原文链接: https://blog.csdn.net/meism5/article/details/90414058 (概念) 原文链接: https://zhidao.baidu.com/question/288121976.html 原文链接: ...
分类:Web程序   时间:2020-05-24 16:45:26    阅读次数:75
Android应用中如何创建并使用Surface
Android在应用中直接使用surface的场景不多见,一般我们使用SurfaceView,通过SurfaceView.SurfaceHolder.getSurface来间接得到Surface。这条路径比较长。首先必须有SurfaceView,SurfaceView必须添加到窗口上才会显示,并得到 ...
分类:移动开发   时间:2020-05-24 16:33:48    阅读次数:111
Laravel 常用protected
1、$table属性 表名,对应数据库中的表名 2、guarded)属性 guarded表示在create()方法中不能被赋值的字段 3、$hidden属性 $hidden属性可以隐藏字段,使其不出现在数组或者json格式中。 4、$fillable 和$guarded相反设为批量添加的白名单,fi ...
分类:其他好文   时间:2020-05-24 16:25:39    阅读次数:94
如何在python列表中查找某个元素的索引
如何在python列表中查找某个元素的索引 2019-03-15 百度上回复的问题 几种方式的回答: 1) print('*'*15,'想找出里面有重复数据的索引值','*'*15) listA = [100, 94, 88, 82, 76, 70, 64, 58, 52, 46, 40, 34,7 ...
分类:编程语言   时间:2020-05-24 12:14:18    阅读次数:190
jQuery 点击元素以外任意地方隐藏该元素
html jq 以下是我的方法,更简单 html ...
分类:Web程序   时间:2020-05-23 20:29:38    阅读次数:248
springcloud报错-------关于 hystrix 的异常 FallbackDefinitionException:fallback method wasn't found
典型如下 第一种import java.util.List;@RestController@RequestMapping("/order")@DefaultProperties(defaultFallback = "fallback4Wait")public class OrderControlle ...
分类:编程语言   时间:2020-05-23 11:34:33    阅读次数:68
226. Invert Binary Tree226.反转二叉树
[抄题]: Invert a binary tree. Example: Input: 4 / \ 2 7 / \ / \ 1 3 6 9 Output: 4 / \ 7 2 / \ / \ 9 6 3 1 [暴力解法]: 时间分析: 空间分析: [优化后]: 时间分析: 空间分析: [奇葩输出条件 ...
分类:其他好文   时间:2020-05-23 10:03:40    阅读次数:49
Ext 6 解决 cannot read property 'hide' of undefined
这个错误是我在使用sencha app build Android 时报出来的错误,刚刚开始我也以为自己的代码哪里写错了 最后发现不是,原来只是缺少了cordova 的 cordova-plugin-splashscreen 插件,只要切换到cordova 目录添加cordova-plugin-sp ...
分类:其他好文   时间:2020-05-22 19:39:33    阅读次数:59
一个jquery轮播图
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< ...
分类:Web程序   时间:2020-05-22 19:07:33    阅读次数:113
使用python绘制爱心
import turtle turtle.bgcolor("black") turtle.pensize(2) sizeh = 1.2 def curve(): for ii in range(200): turtle.right(1) turtle.forward(1 * sizeh) turtl ...
分类:编程语言   时间:2020-05-21 23:40:25    阅读次数:86
4513条   上一页 1 ... 15 16 17 18 19 ... 452 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!