1 class NumArray 2 { 3 vector<int> num; 4 public: 5 NumArray(vector<int>& nums) 6 { 7 num = nums; 8 } 9 10 void update(int i, int val) 11 { 12 num[i] ...
分类:
编程语言 时间:
2020-04-17 00:16:22
阅读次数:
70
在b站中,查看视频。下载flash 下载 到此安装成功! 2.安装Adobe Flash插件 sudo apt update sudo apt install adobe-flashplugin browser-plugin-freshplayer-pepperflash ...
分类:
系统相关 时间:
2020-04-17 00:13:27
阅读次数:
71
1、题目描述 对于如下表actor,其对应的数据为: actor_idfirst_namelast_namelast_update 1 PENELOPE GUINESS 2006-02-15 12:34:33 2 NICK WAHLBERG 2006-02-15 12:34:33 创建一个actor ...
分类:
其他好文 时间:
2020-04-16 19:44:34
阅读次数:
79
update table_p as p set p_name = a.name,p_user = a.user_id,p_type = 'P02' from ( select x.user_id,x.name,x.p_id from table_u x join table_p y on x.p_i ...
分类:
数据库 时间:
2020-04-16 15:27:59
阅读次数:
83
一.事务 mysql中,事务是一个最小的不可分割单元.事务能够保证一个业务的完整性. eg:银行转账 a -> -100 update user set money=money-100; b -> +100 update user set money=money+100; 实际程序中,如果只有一条语 ...
分类:
数据库 时间:
2020-04-16 15:02:28
阅读次数:
76
[toc] 理论 1. 什么是ingress 简单理解,ingress就是将pod所提供的服务暴露出来,能够让k8s集群外部访问到对应的服务。 2. 为什么要使用ingress? 除了可以使用ingress。我目前使用过的还有nodeport,nodeport直接映射集群中每台主机的端口,可以通过访 ...
分类:
其他好文 时间:
2020-04-16 11:41:05
阅读次数:
73
1、Mapper for [tags] conflicts with existing mapping in other types:\n[mapper [tags] is used by multiple types. Set update_all_types to true to update ...
分类:
其他好文 时间:
2020-04-16 00:30:12
阅读次数:
165
# 1、在元类中控制把自定义类的数据属性都变成大写 class Mymeta(type): def __new__(cls, name,bases,attrs): update_attrs = {} for k,v in attrs.items(): if not callable(v) and n ...
分类:
其他好文 时间:
2020-04-15 21:32:23
阅读次数:
76
'''不会3、在元类中控制自定义的类产生的对象相关的属性全部为隐藏属性4、基于元类实现单例模式''''''1、在元类中控制把自定义类的数据属性都变成大写class Father(type): def __new__(cls,name,bases,dic): update_dic={} for k,v ...
分类:
其他好文 时间:
2020-04-15 17:44:33
阅读次数:
67
1、什么叫做事务? mysql中,事务其实是一个最小的不可分割的工作单元。事务能够保证一个业务的完整性。 eg.银行转账: a要向b转出100元:a-->-100: update user set money=money-100 where name='a'; b-->+100: update us ...
分类:
其他好文 时间:
2020-04-15 14:04:15
阅读次数:
90