码迷,mamicode.com
首页 >  
搜索关键字:parent    ( 6866个结果
Javascript继承的多种方式和优缺点
本文讲解JavaScript各种继承方式和优缺点。 一、原型链继承 function Parent () { this.name = 'kevin'; } Parent.prototype.getName = function () { console.log(this.name); } funct ...
分类:编程语言   时间:2020-04-12 10:34:25    阅读次数:59
二叉树的基础实现 代码
class BinaryTree <T extends Comparable<T>>{ private class Node{ private Comparable<T> data;//可以比较大小 private Node parent;//保存父节点 private Node left; pri ...
分类:其他好文   时间:2020-04-11 18:59:38    阅读次数:84
理解类加载的双亲委派模型
类加载器 启动类加载器 BootstrapClassLoader 扩展类加载器 ExtensionClassLoader 系统类加载器(应用程序类加载器) AppClassLoader Java API doc 表述 The Java platform uses a delegation model ...
分类:其他好文   时间:2020-04-09 10:31:03    阅读次数:76
QML::常用属性2
Flow { anchors.fill: parent anchors.margins: 10 //Text 间隔 spacing: 30 //行距 Text { text: "Text"; font.pixelSize: 40 } Text { text: "items"; font.pixelS ...
分类:其他好文   时间:2020-04-09 00:10:37    阅读次数:83
高亮显示 + 手风琴
<script> $(function () { //获取所有的li注册鼠标进入和离开的事件 $(".wrap>ul>li").mouseover(function () { $(this).siblings("li").css("opacity",0.5); $(this).css("opacit ...
分类:其他好文   时间:2020-04-08 21:04:02    阅读次数:67
vs的url传参
在controller.cs的方法中写入string UserID = Request.QueryString["UserID"];ViewBag.UserID = UserID; 传参的形式:parent.openWindow('编辑用户信息:', '/UserInfo/getListGetMod ...
分类:Web程序   时间:2020-04-08 09:59:32    阅读次数:81
mysbatis中的Dao.xml的配置中如果属性不是string类型不能用 attribute(属性) != null 来判断,否则失效,无法注入。
<if test="parentId != null and parentId != ''"> AND bc.`parent_id` = #{parentId, jdbcType=VARCHAR} </if> <if test="deleteStatus != null"> AND bc.`dele ...
分类:其他好文   时间:2020-04-07 22:08:43    阅读次数:76
springboot2.2.5.RELEASE整合springDataElasticsearch Elasticsearch7.6.x 版本
本文使用内容 springBoot2.2.5.RELEASE版本 Elasticsearch7.6.2 linux版本的 SpringDataElasticSearch与Springboot版本对应 一、操作准备 1、导入依赖 此处版本 2.2.5.RELEASE <parent> <groupId ...
分类:编程语言   时间:2020-04-07 12:29:00    阅读次数:108
Nginx 的配置指令
我们已经了解了 Nginx 的基本命令和架构原理,下面该到最让人头疼也是最不容易理解的部分了,那就是 nginx.conf 这个配置文件,下面从 Nginx 的指令开始,一步步来讲解 Nginx 的配置。 Nginx 指令 先来看一个典型的 Nginx 配置文件示例。 从上面可以看到,这个配置文件中 ...
分类:其他好文   时间:2020-04-07 09:32:00    阅读次数:63
通用mapper操作 (or)
or 操作 ZymlPubDictionaryExample Example = new ZymlPubDictionaryExample(); Criteria c1 = Example.createCriteria(); Criteria c2 = Example.createCriteria( ...
分类:移动开发   时间:2020-04-07 09:20:54    阅读次数:136
6866条   上一页 1 ... 38 39 40 41 42 ... 687 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!