码迷,mamicode.com
首页 >  
搜索关键字:objects    ( 3239个结果
oracle删除数据库表空间
步骤一: 删除userdrop user ×× cascade说明: 删除了user,只是删除了该user下的schema objects,是不会删除相应的tablespace的。步骤二: 删除tablespaceDROP TABLESPACE tablespace_name INCLUDING C...
分类:数据库   时间:2014-06-11 12:49:07    阅读次数:277
Sort Colors
题目 Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and blue. Here, we will use the...
分类:其他好文   时间:2014-06-10 07:21:21    阅读次数:261
KVO的内部实现
KVO是实现Cocoa Bindings的基础,它提供了一种方法,当某个属性改变时,相应的objects会被通知到。在其他语言中,这种观察者模式通常需要单独实现,而在Objective-C中,通常无须增加额外代码即可使用。 概述 这是怎么实现的呢?其实这都是通过Objective-C的运行时...
分类:其他好文   时间:2014-06-09 20:54:40    阅读次数:259
Oracle EBS-SQL (SYS-10):锁定表查询.sql
SELECT o.object_name, l.session_id,l.process,l.locked_mode FROM v$locked_object l , dba_objects o WHEREo.object_id=l.object_id
分类:数据库   时间:2014-06-09 17:17:11    阅读次数:460
Chapter 17. Objects and Inheritance(对象与继承)
javascript面向对象编程有几个层面:1: 单一对象 (covered inLayer 1: Single Objects)2: 对象之间的 prototype (described inLayer 2: The Prototype Relationship Between Objects)3...
分类:其他好文   时间:2014-06-09 17:00:14    阅读次数:248
pl/sql developer 使用的一些技巧
1,登录后默认自动选中My Objects默认情况下,PLSQL Developer登录后,Brower里会选择All objects,如果你登录的用户是dba,要展开tables目录,正常情况都需要Wait几秒钟,而选择My Objects后响应速率则是以毫秒计算的。Tools菜单 --> Obj...
分类:数据库   时间:2014-06-09 15:31:31    阅读次数:301
[leetcode]Sort Colors @ Python
原题地址:https://oj.leetcode.com/problems/sort-colors/题意:Given an array withnobjects colored red, white or blue, sort them so that objects of the same col...
分类:编程语言   时间:2014-06-08 20:56:32    阅读次数:394
C#开发BHO插件UrlTrack
最近忽然突发奇想,想统计一下我最经常上的网站是哪些,并且在这些网站上都停留了多久。为此决定写一个BHO插件来做这件事。BHO(Browser Help Objects)是实现了特定接口(IObjectWithSite)的COM组件。开发好的BHO插件除了要在注册表中注册为COM Server外,还必...
分类:其他好文   时间:2014-06-08 20:13:20    阅读次数:314
A Swift Tour(4) - Objects and Classes
Objects and Classes(对象和类)用 class 关键字后面跟一个类名来创建一个class,在一个类中声明 常亮或变量,他存在于当前类的上下文,函数的方法是同样的var numberOfSides = 0 let numberOfSidesLet = 1 func...
分类:其他好文   时间:2014-06-08 00:44:09    阅读次数:383
leetcode--Sort Colors
Given an array withnobjects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, wh...
分类:其他好文   时间:2014-06-07 20:11:53    阅读次数:234
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!