学习CAD 是一个需要慢慢积累的过程,千万不要遇到一点小困难就退缩,有困难我们就一起克服它!今天小编也是来帮助大家克服困难的!很多小伙伴学习CAD已经有一段时间了,但是发现自己的绘图效率还是不高,没关系,今天小编就来给大家分享一些常用的快捷键,帮助大家快速绘图! 一、修剪命令 1、TR修剪 首先我们 ...
分类:
其他好文 时间:
2019-11-25 18:57:56
阅读次数:
91
Suppose that all the keys in a binary tree are distinct positive integers. Given the postorder and inorder traversal sequences, you are supposed to ou ...
分类:
其他好文 时间:
2019-11-25 18:02:45
阅读次数:
74
题目:给定一个二叉树,返回它的中序 遍历。 来源:https://leetcode-cn.com/problems/binary-tree-inorder-traversal/ 法一:网上的代码 思路:利用栈的递归,对每次取的节点进行标记,第一次遍历该节点时,标记为灰色,左子树和右子树标记为白色,注 ...
分类:
其他好文 时间:
2019-11-24 13:33:01
阅读次数:
73
delegate T Factory<out R, in S , T>() // out R 协变 in S 逆变 T 不变 public delegate TR Func<T1, T2, TR>(T1 p1, T2 p2); //泛型委托 TR委托返回类型 T1,T2 委托参数类型 class S ...
分类:
其他好文 时间:
2019-11-24 11:43:07
阅读次数:
69
20191105学习总结(一)列表合并1.colspan: 横向合并,列合并2.rowspan: 纵向合并,行合并3.th:表头 会加粗,同时样式居中 td th → tr → ..... td td tr → ..... td4. table → tbody → .......... td tr ...
分类:
其他好文 时间:
2019-11-22 00:36:25
阅读次数:
95
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/strict.dtd"><html><head><META http-equiv=Content-Typ ...
分类:
其他好文 时间:
2019-11-21 22:49:17
阅读次数:
74
一、SPEL表达式权限控制 从 开始已经可以使用 表达式来控制授权,允许在表达式中使用复杂的布尔逻辑来控制访问的权限。Spring Security可用表达式对象的基类是SecurityExpressionRoot。 | 表达式函数 | 描述 | | | | | ) | 用户拥有指定的角色时返回tr ...
分类:
编程语言 时间:
2019-11-21 10:23:29
阅读次数:
86
需求:在需要计算每一列的总和显示在最后一行 eg; AA BB CC 1 2 3 1 2 3 SUM 2 4 6 大概是酱紫 我用的是mvc Model 显示的 1 @model TModel 2 3 <table> 4 <tr> 5 <th>aa</th> 6 <th>aa</th> 7 <th> ...
<table border="1px" cellpadding="0" cellspacing="0" width="200px"> <tr class="red"> <th>用户id:</th> <th>用户名:</th> <th>用户密码:</th> </tr> <c:forEach items ...
分类:
其他好文 时间:
2019-11-19 10:30:10
阅读次数:
76
1.第一种,!$(event.target).is('input'),判断触发事件的元素是否为input。此时使用event.target,而不是this,获取事件本身,防止触发事件冒泡的问题。 $("#data_table tr").on("click",function (event) { if ...
分类:
Web程序 时间:
2019-11-18 12:38:31
阅读次数:
389