Day 7 深copy和浅Copy
dict.fromkeys的用法
1
2
3
4
5
6
7
8
9
10
11
|
#dict.fromkeys的用法 #例子1 dic = dict .fromkeys([ 1 , 2 , 3 ],[]) print (dic) #{1: [], 2: [], 3: []} dic[ 2 ].append( 'alex' ) #{1: ['alex'], 2: ['alex'], 3: ['alex']} print (dic) #例子二 dic1 = dict .fromkeys([ 'Q' , 'w' ],[ 'a' , 'b' ]) print (dic1) #{'Q': ['a', 'b'], 'w': ['a', 'b']} dic1[ 'w' ].append( 'd' ) print (dic1) #{'Q': ['a', 'b', 'd'], 'w': ['a', 'b', 'd']} |
浅copy和深copy
浅copy的引入:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
引入浅copy #只是第一层的列表变化 l1 = [ 1 , 2 , 3 ] l2 = l1[:] l1.append( 123 ) print (l1) #[1, 2, 3, 123] print (l2) #[1, 2, 3] #第二层列表改变 l3 = [ 1 ,[ 2 , 3 ], 4 ] l4 = l3[:] #实质上是浅copy l3[ 1 ].append( 666 ) print (l3) #[1, [2, 3, 666], 4] print (l4) #[1, [2, 3, 666], 4] |
浅copy:
1
2
3
4
5
6
7
|
#浅copy #对于浅copy来说,第一层都是独立的内存地址,从第二层开始都是指向同一个内存地址,一变全都变。 l5 = [ 9 , 8 ,[ 7 , 6 ], 5 ] l6 = l5.copy() l5[ 2 ].append( 888 ) print (l5, id (l5), id (l5[ 2 ])) #[9, 8, [7, 6, 888], 5] 31820816 31820856 print (l6, id (l6), id (l6[ 2 ])) #[9, 8, [7, 6, 888], 5] 31819336 31820856 |
深copy:
1
2
3
4
5
6
7
8
|
#深copy #对于深copy来说,无论多少层,在内存中,都是两个独立的内存地址。 import copy l7 = [ 9 , 8 ,[ 7 , 6 ], 5 ] l8 = copy.deepcopy(l7) l7[ 2 ].append( 888 ) print (l7, id (l7), id (l7[ 2 ])) #[9, 8, [7, 6, 888], 5] 41955896 41955816 print (l8, id (l8), id (l8[ 2 ])) #[9, 8, [7, 6 ], 5] 41957976 41957936
|
Day 7 深copy和浅Copy的更多相关文章
- (五)聊一聊深Copy与浅Copy
一.关于浅copy与深copy 首先说明一下: 在python中,赋值其实就是对象的引用,变量就是对象的一个标签,如果把内存对象比喻成一个个房间,那么变量就是门牌号. 深copy与浅copy只是针对可 ...
- Python的深copy和浅copy
浅拷贝(copy):拷贝父对象,不会拷贝对象的内部的子对象. 深拷贝(deepcopy): copy 模块的 deepcopy 方法,完全拷贝了父对象及其子对象. 浅copy: a = [1, 2, ...
- 列表的使用2,深COPY和浅COPY,循环列表,步长切片
name2=names.copy() 下面我看几种奇怪的现象: 首先把源列表copy以后,把源列表第2个数值修改.那么没毛病. 如果源列表里,还包含了一个子列表:这也没毛病 如果我们这个时候修改子列表 ...
- 深copy和浅copy
浅copy:其实就是将容器中的内存地址存放进另一个容器中,所以两个容器本身的内存地址不相同,但容器里面的内存地址相同 代码如下: 深copy:就是从里到外完完全全复制了所有值,存进另外的内存空间,并赋 ...
- python中深copy,浅copy与赋值语句的区别
以下详细讲解:python深复制,浅复制与赋值语句的区别 1. '='赋值语句,常规复制只是将另一个变量名关联到了列表,并不进行副本复制,实例如下: var1=[12,35,67,91,101]var ...
- C/C++深度copy和浅copy
#define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<stdlib.h> #include<string. ...
- 深浅copy和浅copy
深浅copy 1,先看赋值运算. l1 = [1,2,3,['barry','alex']] l2 = l1 l1[0] = 111 print(l1) # [111, 2, 3, ['barry', ...
- python中深copy,浅copy
版权声明:本文为博主原创文章,未经博主允许不得转载. >>> mylist1 = [1, 2, 3, 4] >>> myl = mylist1 >>&g ...
- PHP的深copy和浅copy
1.对象复制的由来 为什么对象会有“复制”这个概念,这与PHP5中对象的传值方式是密切相关的,让我们看看下面这段简单的代码 /** * 电视机类 */ class Television { /** * ...
随机推荐
- Web Components 规范学习
最新的规范在这里:http://w3c.github.io/webcomponents/explainer/ 依据规范,有以下四个组成部分: Templates Custom Elements Sha ...
- php的反射
我们可以在PHP运行时,通过PHP的反射动态的获取类的方法.属性.参数等详细信息. 用途:插件的设计,文档的自动生成,扩充PHP语言. <?php class Person { const ...
- WARNING [main] org.apache.catalina.util.SessionIdGeneratorBase.createSecureRandom Creation of SecureRandom instance for session ID generation using [SHA1PRNG] took [] milliseconds.
编译安装tomcat-native和tomcat-deamon以后,发现toomcat启动很慢,好久才有响应.以下日志供参考: 11-Sep-2017 12:19:28.102 INFO [main] ...
- Golang之Mysql操作
话说当年武大郎对着电脑一顿噼里啪啦,,,对mysql增删改查 增加insert package main import ( "fmt" "github.com/jmoir ...
- 淘宝、天猫又开源了一个动态化、高性能的UI框架
前言 淘宝.天猫一直致力于解决 页面动态化的问题 在2017年的4月发布了v1.0解决方案:Tangram模型 及其对应的 Android库 vlayout,该解决方案在手机淘宝.天猫 Android ...
- bluez蓝牙测试工具
http://blog.csdn.net/talkxin/article/details/50610984
- Socket-IO 系列(三)基于 NIO 的同步非阻塞式编程
Socket-IO 系列(三)基于 NIO 的同步非阻塞式编程 缓冲区(Buffer) 用于存储数据 通道(Channel) 用于传输数据 多路复用器(Selector) 用于轮询 Channel 状 ...
- 关于IBatisNet的配置文件中数据库连接字符串加密处理
我们通常在IBatisNet配置文件 properties.config 加入数据库连接字符串.数据库连接字符串直接放在里面,没有被加密,很不安全.如果我们把 properties.config 文件 ...
- Can not find the tag library descriptor for "/struts-tags"`
1.查看struts.xml路径是否错误,要放在src下, 2.缺少struts-tags.tld (1)查找方式: (2)找到此包,然后右键用解压缩文件打开. (3)然后你会看到很多的源码,找到红圈 ...
- Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [com.liuyang.JDbCTemplate.PersonDao]: No default constructor fo
错误是说我的配置文件中没有对构造函数进行配置,所以找不到构造函数,在配置文件application.xml中加入如下句子: <bean id="personDao" clas ...