小肥羊要进步

2020年4月8日

python中的超继承super

摘要: #超继承class MathMethod: def __init__(self,a,b): self.a=a self.b=b def add(self): # return self.a+self.b print("我是父类的方法",self.a+self.b) def sub(self): re 阅读全文

posted @ 2020-04-08 22:40 小肥羊要进步 阅读(374) 评论(0) 推荐(0) 编辑

cookie,session,token 区别

摘要: cookie:在客户端存储用户的一些数据,比如用户名,浏览记录等 session:在服务器端,记录用户的请求状态,一般30min 缓存不是cookie,缓存中有cookie,图片,js等。。会员卡机制-因为http请求是无状态的 session_id会存在cookie中,每次请求cookie中所有的 阅读全文

posted @ 2020-04-08 19:06 小肥羊要进步 阅读(229) 评论(0) 推荐(0) 编辑

知识回顾_获取包名和app入口

摘要: 1.下载哔哩.apk到本地和夜神 2.获取包名:D:\Andriod_SDK\build-tools\27.0.1>aapt dump badging D:\iBiliPlayer-bili.apk name='tv.danmaku.bili' 3.获取入口 appActivity-App启动入口 阅读全文

posted @ 2020-04-08 08:30 小肥羊要进步 阅读(413) 评论(0) 推荐(0) 编辑

导航