1,内存管理2,多线程3,runtime4,socket网络编程5,音频视频处理6,io操作7,OpenGL8,cocoa2d9,数据结构,数据类型10,算法,11,语法概念,关键字12,语言扩展,c++13,库的构建,14,编译器,调试工具,pod库管理,SVN
使用,,15,库的学习,16,bl...
分类:
其他好文 时间:
2014-05-28 03:22:11
阅读次数:
216
USE [szmj]GO/****** Object: StoredProcedure
[dbo].[Par_ProductDownLoad] Script Date: 05/26/2014 17:46:32 ******/SET
ANSI_NULLS ONGOSET QUOTED_IDEN...
分类:
其他好文 时间:
2014-05-28 03:07:11
阅读次数:
269
1、实现原窗体消失,打开另一个窗体,关闭新窗体时则关闭程序 private void
button5_Click(object sender, EventArgs e) { Form2 form2 = new Form2(); ...
【objc变量的获取】 C++成员变量通过偏移来寻找,速度极快。But
Objc中的变量通过方法调用来寻找,方法首先根据变量名,找到ivar_t,然后在ivar_t对象中取出偏移,再用此偏移来取值(这最后一步和C++一样)。ivar_t类结构如下:
objc-runtime中的object_...
分类:
其他好文 时间:
2014-05-28 02:26:03
阅读次数:
289
Oracle杀死死锁进程先查看哪些表被锁住了:select
b.owner,b.object_name,a.session_id,a.locked_modefrom v$locked_object
a,dba_objects bwhere b.object_id = a.object_id;OWNE...
分类:
数据库 时间:
2014-05-28 02:21:13
阅读次数:
399
前言 好记性不如料“笔头”系列。。。 类型基础
基元类型、引用类型和值类型类型基础“运行时”要求每个类型最终都从System.Object 类型派生。 由于所有类型最终都从System.Object
派生,所以可以保证每个类型的每个对象都有一组最基本的方法。具体地说,System.Objec...
分类:
其他好文 时间:
2014-05-28 01:46:03
阅读次数:
280
1.getAttribute是取得jsp中 用setAttribute設定的attribute
2.parameter得到的是string;attribute得到的是object
3.request.getParameter()方法传递的数据,会从Web客户端传到Web服务器端,代表HTTP请求数据...
分类:
其他好文 时间:
2014-05-28 00:48:55
阅读次数:
292
object对象中的 public boolean equals(Object
obj),对于任何非空引用值 x 和 y,当且仅当 x 和 y 引用同一个对象时,此方法才返回 true; 注意:当此方法被重写时,通常有必要重写
hashCode 方法,以维护 hashCode 方法的常规协定,该协定...
分类:
其他好文 时间:
2014-05-28 00:40:59
阅读次数:
211
Any View object may have an integer ID associated
with it, to uniquely identify the View within the tree. When the application is
compiled, this ID is...
分类:
移动开发 时间:
2014-05-27 17:10:02
阅读次数:
314
起:C++98标准加入auto_ptr,即智能指针,C++11加入shared_ptr和weak_ptr两种智能指针,先从auto_ptr的定义学习一下auto_ptr的用法。template class
auto_ptr { // wrap an object pointer to ensure....
分类:
编程语言 时间:
2014-05-27 16:13:40
阅读次数:
440