HWND hwIpEdit;hwIpEdit = CreateWindow(WC_IPADDRESS, NULL, WS_CHILD | WS_VISIBLE, 1, 1, 136, 24, Handle, 0, HInstance, NULL);int nIP;SendMessage(hwIpEd ...
分类:
编程语言 时间:
2019-02-17 14:16:43
阅读次数:
220
一、动词: touch、hear、say、listen touch [t?t?] 触摸 I touch the cat. They touch the elephant. hear [h?r] 听到 I hear them. He hears you. You hear a child. The g ...
分类:
其他好文 时间:
2019-02-15 23:51:31
阅读次数:
207
题目要求 Given a tree, rearrange the tree in in-order so that the leftmost node in the tree is now the root of the tree, and every node has no left child ...
分类:
其他好文 时间:
2019-02-14 11:48:36
阅读次数:
207
一、path模块的引入。 直接引用。node中自带的模块 const path = require('path');二、path.join(path1,path2,path3.......) 作用:将路径片段使用特定的分隔符(window:\)连接起来形成路径,并规范化生成的路径。若任意一个路径片段 ...
分类:
其他好文 时间:
2019-02-13 22:58:58
阅读次数:
314
$ go build -x -x会列出来go build调用到的所有命令。 如果你对Go的工具链好奇,或者使用了一个跨C编译器,并且想知道调用外部编译器用到的具体参数,或者怀疑链接器有bug;使用-x来查看所有调用。 $ go build -x WORK=/var/folders/00/1b8h80 ...
分类:
其他好文 时间:
2019-02-13 10:53:34
阅读次数:
249
1、错误描述 Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Cannot add or update a child row: a foreign key constrai ...
分类:
其他好文 时间:
2019-02-13 10:41:00
阅读次数:
142
slot 插槽可以在子组件中为父组件要传递的标签占位置 能够有效的减少代码冗余 使代码更加有逼格 第一个例子 第一个例子 <body> <div class="app"> <child> //假注释。。。 这里的span标签会替代子组件child中的slot标签 当child标签中没有任何东西的时候 ...
分类:
其他好文 时间:
2019-02-12 00:06:54
阅读次数:
212
1、加入依赖 在 pubspec.yaml 中 dependencies 节点下添加: 2、引入代码 在需要细线二维码的 dart 类中引入依赖代码包: 代码部分 详细属性:https://pub.dartlang.org/packages/qr_flutter 3、实现效果 博客地址:https: ...
分类:
其他好文 时间:
2019-02-11 21:27:53
阅读次数:
1175
cmp的编写 return a>b(从大到小) a<b(从小到大) bool cmp(int a, int b){ return(Node[a].weight>Node[b].weight); } sort(Node[parent].child.begin(),Node[parent].child. ...
分类:
其他好文 时间:
2019-02-09 21:13:12
阅读次数:
235