A. 组队比赛 签到。 Code cpp / Author: heyuhhh Created Time: 2020/4/18 12:10:50 / include include include include include include include include include incl ...
分类:
其他好文 时间:
2020-04-21 09:56:24
阅读次数:
96
1 # -*- coding: utf-8 -*- 2 """ 3 Created on Mon Apr 20 22:51:44 2020 4 5 @author: 49594 6 """ 7 8 import re 9 a = input() 10 b = input() 11 m = re.se ...
分类:
其他好文 时间:
2020-04-21 09:36:40
阅读次数:
87
方式一: ret = models.Book.objects.filter(authors__authordetail__telephone="123412351").values("title", "publish__name") print(ret) 方式二: ret = models.Auth ...
分类:
其他好文 时间:
2020-04-21 00:07:07
阅读次数:
62
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Mon Apr 20 21:08:08 2020 @author: root """ import collections Card = collections.namedtu ...
分类:
编程语言 时间:
2020-04-20 23:51:10
阅读次数:
70
使用CountDownLatch模拟线程并发执行代码,示例代码如下: package com.gaopeng.multithread; import java.util.concurrent.CountDownLatch; /** * 使用CountDownLatch模拟线程并发执行代码 * * @ ...
分类:
编程语言 时间:
2020-04-20 13:46:19
阅读次数:
56
一对多: 正向查询: # 一对多:正向查询,查询三国演义这本书的出版社的名字 values("关联字段名__要查询的字段") ret = models.Book.objects.filter(title="三国演义").values("publish__name") print(ret) # 查询到 ...
分类:
其他好文 时间:
2020-04-20 01:33:35
阅读次数:
101
注释(comments) 注释是不会执行的,只是给人看的 要养成写注释的好习惯 要规范 1.单行注释(line comment) // 注释内容 2.多行注释(block comment) /**注释内容*/ 3.文档注释(JavaDoc) 与多行注释在第一行多了一个* /***@author作者* ...
分类:
其他好文 时间:
2020-04-19 15:07:59
阅读次数:
90
实体类如下 Calculation是我们用的类,PointCut是我们要实现通知的切面类 Calculation类如下 package com.llf.aop; import org.springframework.stereotype.Component; /** * @author linglo ...
分类:
编程语言 时间:
2020-04-19 14:46:01
阅读次数:
64
该项目从网上爬取并分析彩票数据,为用户查看和初步分析往期数据提供一种简易的工具。 https://github.com/unknowcry/Lottery 1 # -*- coding: utf-8 -*- 2 """ 3 @author UKC_unknowcry 4 @date 2020-4-1 ...
分类:
编程语言 时间:
2020-04-19 12:41:46
阅读次数:
83
[root@Private python script] cat square.py ...
分类:
编程语言 时间:
2020-04-19 12:32:24
阅读次数:
65