码迷,mamicode.com
首页 >  
搜索关键字:object type material    ( 88846个结果
C 柔性数组
什么是柔性别数组 结构中的最后一个元素允许是未知大小的数组,这就叫做柔性数组成员 例如 typedef struct st_type { int i; int a[0]//柔性数组成员可以调整数组大小 }type_a; 使用方法 struct S { int n; int arr[]; }; int ...
分类:编程语言   时间:2021-04-16 11:50:27    阅读次数:0
mapper(StudentDao)
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <m ...
分类:移动开发   时间:2021-04-16 11:40:46    阅读次数:0
关于synchronized
1:对synchronized的理解: 1.1 :假设t1和t2并发,开始执行时肯定有先有后 1.2:假设t1先执行,看到synchronized这个时候自动找“后面的共享对象”的对象锁,找到后并占有锁,然后执行后面同步代码块,在程序执行过程一直都是占有这把锁,直到同步代码块结束,锁才释放。 1.3 ...
分类:其他好文   时间:2021-04-15 12:38:55    阅读次数:0
十大经典排序之归并排序(C++实现)
#归并排序 思路:(分而治之的思想) 1.申请空间,使其大小为两个已经排序序列之和,该空间用来存放合并后的序列; 2.设定两个指针,最初位置分别为两个已经排序序列的起始位置; 3.比较两个指针所指向的元素,选择相对小的元素放入到合并空间,并移动指针到下一位置; 4.重复步骤 3 直到某一指针达到序列 ...
分类:编程语言   时间:2021-04-15 12:38:31    阅读次数:0
jquery验证表单 提交表单
一起学习jquery, 解决的办法是:使用button按钮,而不是submit按钮 看下面的例子 <title>用户修改密码</title> <script type="text/javascript" src="scripts/jquery-2.0.2.js"></script> <script ...
分类:Web程序   时间:2021-04-15 12:28:59    阅读次数:0
ECMAScript-----(五)对象的扩展
属性名表达式 用途:允许表达式作为属性名、方法名,表达式需要写在方括号里 说明: 注意:属性名表达式时一个对象时,会自动将对象转为字符串 例子: let obj = { [propKey]: true, ['a' + 'bc']: 123 }; let obj = { ['h' + 'ello']( ...
分类:其他好文   时间:2021-04-15 12:18:28    阅读次数:0
laravel 批量删除
<button id="delAll">批量删除</button>//给按钮一个id属性 <input type="checkbox" name="check" checkid="{{$v->id}}">//给input设置一个自定义的id <script src="https://apps.bdi ...
分类:其他好文   时间:2021-04-15 12:05:39    阅读次数:0
KEIL中cannot open source input file "core_cmInstr.h"、type of input file 'Files' unknown 解决办法
在做STM32f405 移植过程中,编译出现了cannot open source input file "core_cmInstr.h": No such file or directory的错误,显然我们需要将core_cmInstr.h添加keil include path中,具体如下图: 查 ...
分类:其他好文   时间:2021-04-15 12:04:39    阅读次数:0
python的几个常用的内建小函数
一.排序: 1.slice切片( ::-1) 2.reversed( ) 3.sorted( ,reverse=True)) 字母数字不可同时存在。默认为False升序,True降序。 4.filter(function,iterable) 二.常用 1.sum() 2.max() 3.min() ...
分类:编程语言   时间:2021-04-15 11:57:56    阅读次数:0
Cannot deserialize instance of `java.util.ArrayList<org.jeecg.modules.face.entity.FaceDevice>` out of START_OBJECT token
远程调用出现json解析异常 操作失败,Error while extracting response for type [java.util.List<org.jeecg.modules.face.entity.FaceDevice>] and content type [application/ ...
分类:编程语言   时间:2021-04-14 12:42:30    阅读次数:0
88846条   上一页 1 ... 57 58 59 60 61 ... 8885 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!