摘要:
选择:select * from table1 where 范围 插入:insert into table1(field1,field2) values(value1,value2) 删除:delete from table1 where 范围 更新:update table1 set field1=value1 where 范围 查找:select * from table1 where fi... 阅读全文
摘要:
之前看书的时候看过了值类型和引用类型的相关内容,当时以为懂了,今天碰到一个问题,发现理解的还是不够透彻 这个时候json赋值给json1的是它存储变量的地址,也就是说改变了其中一个,另外一个下面相关的值也会受到影响。 但是如果是给整个对象重新赋值了,那么就会改变它的指向地址了,这个时候将不会影响到另 阅读全文