<el-tree :data="data" node-key="id" ref="tree" icon-class="el-icon-share" :props="defaultProps"> <template #default="scope"> <div class="custom-node"> ...
分类:
其他好文 时间:
2021-05-24 13:29:53
阅读次数:
0
简介 使用队列实现队列哈哈. code class MyQueue { public: queue<int> q; public: /** Initialize your data structure here. */ MyQueue() { } /** Push element x to the ...
分类:
其他好文 时间:
2021-05-24 13:17:52
阅读次数:
0
Document对象 通过Selenium获取元素属性.注释:Selenium获取元素属性,只能获取属性,不能修改属性值 1 # 通过Selenium获取元素属性 2 #将定位赋值给el 3 el = driver.find_element_by_xpath('//*[@id="ai-topsear ...
分类:
Web程序 时间:
2021-05-24 13:15:21
阅读次数:
0
原理和步骤 Ioc容器的实现主要依赖的是xml解析和Java反射。 步骤:读取配置文件 → 将其逐层“剥开”,获取各项属性 → 通过各属性配合反射生成对象 → 将其放入容器中,以供调用 具体实现 实体类 Book @Data @AllArgsConstructor @NoArgsConstructo ...
分类:
编程语言 时间:
2021-05-24 12:22:22
阅读次数:
0
public AbstractBeanDefinition parseBeanDefinitionAttributes(Element ele, String beanName, @Nullable BeanDefinition containingBean, AbstractBeanDefinit ...
分类:
编程语言 时间:
2021-05-24 11:55:36
阅读次数:
0
思路如下,使用栈,每次把当前节点入栈,然后右子节点入栈,左子节点入栈。 代码如下: import java.util.*; public class Solution { ArrayList<Integer> list = new ArrayList<Integer>(); public Array ...
分类:
移动开发 时间:
2021-05-24 10:30:36
阅读次数:
0
发送命令 void* redisCommand(redisContext c,const char format,...); 参数 返回值 返回值是一个void类型的指针,实际为指向一个redisReply类型的指针 typedef struct redisReply{ // 命令执行结果的返回类型 ...
主要实现了 轮询、加权轮询、随机、加权随机、IPHash 参考大佬文章: https://www.cnblogs.com/wxd0108/p/5465938.html 废话不说,码上见 using System; using System.Collections.Generic; using Sys ...
分类:
编程语言 时间:
2021-05-24 09:27:18
阅读次数:
0
List接口 三大特点:1.有序的collection,2.有索引,3.允许存储重复元素 有序:存储与取出元素顺序是一致的 List接口中常用的方法 public void add (int index,E element) 将指定元素,添加到该集合中指定位置上 public E get(int i ...
分类:
编程语言 时间:
2021-05-24 07:55:05
阅读次数:
0
有段时间没有看SICP了……那本书真的给了我很多启发。 考试过后一定要再读SICP。 依然按SICP对语言的分析方式来。这次,加上自己的理解。 在数学中,函数是两个集合之间的二元关系,它与第一个集合的每个元素正好关联第二个集合的一个元素。典型的例子是从整数到整数,或从实数到实数的函数。 In mat ...
分类:
编程语言 时间:
2021-05-24 07:44:23
阅读次数:
0