前序 好像很久没有发博客了,最近也是很忙(借口!),有很多需要记录的知识没来得及写,此次动笔,因为这个坑也是挺折磨人。 Drawable缓存机制 起因:在ActivityA 和ActivityB中都有一个Button 这两个按钮,都使用了一个drawable对象,当在ActivityA改变drawa ...
分类:
移动开发 时间:
2020-06-07 15:08:43
阅读次数:
92
#实现邮件发送import smtplib#email实现邮件的构建from email.mime.text import MIMETextfrom email.header import Headerimport schedule,timedef job(): # 如何实现文本邮件发送 messa ...
分类:
编程语言 时间:
2020-06-07 10:55:40
阅读次数:
74
前言 Java 线程通信是将多个独立的线程个体进行关联处理,使得线程与线程之间能进行相互通信。比如线程 A 修改了对象的值,然后通知给线程 B,使线程 B 能够知道线程 A 修改的值,这就是线程通信。 wait/notify 机制 一个线程调用 Object 的 wait() 方法,使其线程被阻塞; ...
分类:
编程语言 时间:
2020-06-07 01:00:59
阅读次数:
75
https://my.oschina.net/sdlvzg/blog/1798162 https://blog.csdn.net/weixin_30340353/article/details/99235730 ...
分类:
其他好文 时间:
2020-06-05 15:21:12
阅读次数:
69
There are 2N people a company is planning to interview. The cost of flying the i-th person to city A is costs[i][0], and the cost of flying the i-th p ...
分类:
其他好文 时间:
2020-06-03 23:34:27
阅读次数:
72
MySQL多实例配置 一、MySQL多实例配置 1.1.1 MySQL多实例配置 创建多实例目录 [root@db01 /]# mkdir -p /data/330{7,8,9}/data [root@db01 /]# ll /data/330{7,8,9}/data /data/3307/data ...
分类:
数据库 时间:
2020-06-03 20:33:16
阅读次数:
68
school类: package setdone; import java.util.List; public class School { private String schoolname; private List<Student> sch_list; public School(String ...
分类:
编程语言 时间:
2020-06-03 17:40:19
阅读次数:
76
当直接按下回车键时,会默认提交表单,会发现表单提交报错,这时候需要,否则会报does not contain handler parameter named 'method'. This may be caused by whitespace in the label text <html:form ...
分类:
其他好文 时间:
2020-06-02 20:34:44
阅读次数:
87
今日内容 嵌套 特殊方法:__init__ type/isinstance/issubclass/super 异常处理 内容回顾 #函数执行def login(): passlogin()#执行函数#类创建对象,调用方法class Account: def login(self): passobj ...
分类:
编程语言 时间:
2020-06-02 13:13:00
阅读次数:
54
项目开发中经常需要执行一些定时任务,比如需要在每天凌晨的时候,分析一次前一天的日志信息,Spring为我们提供了异步执行任务调度的方式,提供了两个接口。 TaskExecutor接口 TaskScheduler接口 两个注解: @EnableScheduling @Scheduled 测试步骤: 1 ...
分类:
其他好文 时间:
2020-06-01 21:03:02
阅读次数:
71