flutter的高斯模糊其实是一个模糊化处理的Container元素块 定位在图片的上层 ClipRRect( //切割很重要 child: Stack( overflow: Overflow.clip, alignment: Alignment.center, children: <Widget> ...
分类:
其他好文 时间:
2020-05-24 19:19:14
阅读次数:
70
孤儿进程僵尸进程及其回收是进程的经典知识了。 什么是孤儿进程? 孤儿进程: 父进程先于子进程结束,则子进程成为孤儿进程,子进程的父进程成为 init进程,称为 init 进程领养孤儿进程。 什么是僵尸进程? 僵尸进程: 进程终止,父进程尚未回收,子进程残留资源(PCB)存放于内核中,变成僵尸(Zom ...
分类:
系统相关 时间:
2020-05-24 09:39:38
阅读次数:
76
先上效果图吧 点击'roll'按钮,会出现旋转的动画 代码如下 <!DOCTYPE html> <html> <head> <title></title> <script type="text/javascript" src="JS/jquery-1.12.2.min.js"></script> < ...
分类:
Web程序 时间:
2020-05-23 13:20:00
阅读次数:
53
<?php $i = 10; $s = 2; $o = $i +$s; echo $o; // 可变变量 $u = '<br>'; echo $u; $ss = 'name'; $name = '<b>ppp</b>'; echo $$ss; // 引用传值 // 如果加了&就相当于绑一块了,一个改 ...
分类:
Web程序 时间:
2020-05-22 17:18:52
阅读次数:
58
地址:https://leetcode-cn.com/problems/n-ary-tree-preorder-traversal/ /** * Definition for a Node. * class Node { * public $val = null; * public $childre ...
分类:
其他好文 时间:
2020-05-22 11:21:44
阅读次数:
44
一:背景 1. 讲故事 前天写了一篇大内存排查在园子里挺火,这是做自媒体最开心的事拉,干脆再来一篇满足大家胃口,上个月我写了一篇博客提到过使用 对原来的 进行高强度压缩,将原来的List内存压缩了将近106倍,但是bitmap不是一味的好,你必须在正确的场景中使用,而不是闭着眼睛滥用,bitmap在 ...
分类:
其他好文 时间:
2020-05-22 09:55:48
阅读次数:
52
类型别名 类型别名就是给一种类型起个别的名字,之后只要使用这个类型的地方,都可以用这个名字作为类型代替。它只是起了一个名字,并不是创建了一个新类型。 定义类型别名,使用 type 关键字: type StringType = string let s: StringType s = 'hello' ...
分类:
其他好文 时间:
2020-05-22 09:54:26
阅读次数:
57
<script> // 1. 先准备好学生的数据 var datas = [{ name: '张三', subject: 'JavaScript', score: 100 }, { name: '李四', subject: 'JavaScript', score: 98 }, { name: '王五 ...
分类:
其他好文 时间:
2020-05-21 23:48:15
阅读次数:
74
EMAIL xxxaa@xxx.xxx 1、没有@情况,如:aa.net 2、没有.符号,如:aa@qqcom 3、.后面没有字符:如 xxxaa@xxx. 4、.不在@后面, 如:xxxaa.@xxx.xxx 5、@与.之间没有其他字符,aa@.net.com 6、Email:不能有特殊字符:如? ...
分类:
其他好文 时间:
2020-05-21 19:46:10
阅读次数:
163
题目 A family hierarchy is usually presented by a pedigree tree. Your job is to count those family members who have no child. Input Specification: Each ...
分类:
其他好文 时间:
2020-05-18 18:45:58
阅读次数:
61