今天同事让我看一个触发器为什么老是报错,当执行DML语句触发触发器后,会报ORA-04091错误:ORA-04091: table xxxx is mutating, trigger/function may not see it 。对应的中文错误提示为:ORA-04091: 表 xxx发生了变化,...
分类:
其他好文 时间:
2015-01-15 23:32:21
阅读次数:
267
最近在使用iOS的可变数组时出现了一个错误,报错信息为:reason: '-[__NSCFArray removeObjectAtIndex:]: mutating method sent to immutable object'字面的意思就是可变数组的方法发送给了一个不可变的对象。声明和初始化的代...
分类:
编程语言 时间:
2015-01-05 18:33:18
阅读次数:
188
今天干活的时候,遇到了这样一个问题..
实在是太粗心了。mark下,
2014-01-05 11:44:34.762 softwareApp[1435:c07] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '*** -[JKDictionary...
分类:
移动开发 时间:
2015-01-05 09:34:26
阅读次数:
148
The Swift Programming Language中的代码加上部分EXPERIMENTimport UIKitprotocol ExampleProtocol { var simpleDescription: String { get } mutating func adjus...
分类:
编程语言 时间:
2014-12-21 23:27:04
阅读次数:
209
Insert or update an element in mapm:m[key] = elemRetrieve an element:elem = m[key]Delete an element:delete(m, key)Test that a key is present with a tw...
分类:
其他好文 时间:
2014-10-28 00:39:53
阅读次数:
243
在swift中,包含三种类型(type):
structure,enumeration,class
其中structure和enumeration是值类型(value type),class是引用类型(reference
type)
但是与objective-c不同的是,structure和enumeration也可以拥有方法(method),其中方法可以为实例方法(instance...
分类:
编程语言 时间:
2014-09-30 14:22:39
阅读次数:
152
本文转载至 http://blog.csdn.net/yesjava/article/details/80861851. mutating method sent to immutable object'从字面上理解:可变的消息发给了不可变的对象。比如NSDictionary类型的对象调用setVa...
分类:
移动开发 时间:
2014-09-25 13:18:48
阅读次数:
206
1. mutating method sent to immutable object'从字面上理解:可变的消息发给了不可变的对象。比如NSDictionary类型的对象调用setValue方法.应该把NSDictionary 改成NSMutableDictionary类型。2.Local decl...
分类:
移动开发 时间:
2014-08-27 18:31:48
阅读次数:
189
/*******************************************************************************/
// 协议
protocol Description{
func description() -> String
mutating func aMutatingMethod()
class func ...
分类:
其他好文 时间:
2014-06-22 22:33:55
阅读次数:
169
Protocols and Extensions
Protocols 协议的使用
使用关键字 protocol 定义一个协议
protocol ExampleProtocol {
var simpleDescription: String { get }
mutating func adjust()
}
类,枚举和结构体都可以实现协议
class SimpleC...
分类:
其他好文 时间:
2014-06-08 17:09:31
阅读次数:
254