因为要保存一些用户名之外的内容在shiro中,所以创建了一个ShiroUser的类,当用户修改了某些属性后,如何动态保存到shiro中: Subject subject = SecurityUtils.getSubject();ShiroUser shiroUser = (ShiroUser)sub ...
分类:
其他好文 时间:
2020-07-07 17:34:09
阅读次数:
79
Lost and AekdyCoin are friends. They always play "number game"(A boring game based on number theory) together. We all know that AekdyCoin is the man c ...
分类:
编程语言 时间:
2020-07-07 12:52:15
阅读次数:
93
链接:https://leetcode-cn.com/problems/jump-game-ii/ 代码 class Solution { public: int jump(vector<int>& nums) { int n = nums.size(); vector<int> f(n); for ...
分类:
其他好文 时间:
2020-07-07 09:32:36
阅读次数:
49
紧接着昨天的内容,今天我们来说说模板语句的内容,关于模板语句,核心就是{ % 语句 % } 先说一下if else的使用 { % if 判定语句 % } { % endif % } 如果判定结果为true,则会执行其判定语句之后的html标签内容: 例子: {% if num >= 100 and ...
分类:
编程语言 时间:
2020-07-07 00:37:17
阅读次数:
82
cd mkdir .pip cd .pip vim pip.conf [global] index-url=http://pypi.douban.com/simple trusted-host = pypi.douban.com ...
分类:
其他好文 时间:
2020-07-06 16:40:11
阅读次数:
55
https://www.tutorialspoint.com/degree-of-vertex-of-a-graph It is the number of vertices adjacent to a vertex V. Notation ? deg(V). In a simple graph w ...
分类:
其他好文 时间:
2020-07-06 10:28:43
阅读次数:
71
"""需求:1)查看帮助信息 2)查看历史最高分 3) 创建游戏对象,开始游戏游戏说明:设计一个Game类属性:定义一类属性top_score记录游戏的历史最高分(与这个游戏有关,每次游戏的时候与最高分无关) 定义一个实例属性player_name记录当前游戏玩家的玩家姓名方法:静态方法show_h ...
分类:
其他好文 时间:
2020-07-05 19:10:50
阅读次数:
96
运行环境:python3.6.9 opencv3.4.10 import cv2 import numpy as np font=cv2.FONT_HERSHEY_COMPLEX kernel = np.ones((7,7),np.uint8) img=cv2.imread('corn.jpg',1 ...
分类:
其他好文 时间:
2020-07-04 22:25:33
阅读次数:
72
安装wxpython https://blog.csdn.net/lsf_007/article/details/87931823 pip install wxpython -i http://pypi.douban.com/simple --trusted-host pypi.douban.com ...
分类:
编程语言 时间:
2020-07-04 15:07:27
阅读次数:
63
比赛链接:https://codeforces.com/contest/1270 A. Card Game 题意 有两个人在玩卡牌游戏,规则如下: 共有 $n$ 张牌,值为 $1$ 到 $n$ 两个人各出一张牌,牌大者拿走两张牌 手中先无牌者输掉游戏 给出一开始两个人的手牌情况(至少都有一张牌),判 ...
分类:
其他好文 时间:
2020-07-04 01:16:02
阅读次数:
62