上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 27 下一页
摘要: Private Members in JavaScript Douglas Crockford www.crockford.com JavaScript is the world's most misunderstood programming language. Some believe that 阅读全文
posted @ 2016-12-14 11:52 yasepix 阅读(288) 评论(0) 推荐(0) 编辑
摘要: vc中调用Com组件的方法详解 转载自:网络,来源未知,如有知晓者请告知我。需求:1.创建myCom.dll,该COM只有一个组件,两个接口: IGetRes--方法Hello(), IGetResEx--方法HelloEx()2.在工程中导入组件或类型库 #import "组件所在目录myCom. 阅读全文
posted @ 2016-11-24 18:14 yasepix 阅读(3108) 评论(0) 推荐(0) 编辑
摘要: VC++ try catch (转) 以前都是用try{} catch(…){}来捕获C++中一些意想不到的异常, 今天看了Winhack的帖子才知道,这种方法在VC中其实是靠不住的。例如下面的代码:try { BYTE* pch ; pch = ( BYTE* )00001234 ; //给予一个 阅读全文
posted @ 2016-10-24 11:44 yasepix 阅读(223) 评论(0) 推荐(0) 编辑
摘要: oracle中exp,imp的使用详解 oracle中exp,imp的使用详解 基本语法和实例: 1、EXP: 有三种主要的方式(完全、用户、表) 1、完全: EXP SYSTEM/MANAGER BUFFER=64000 FILE=C:\FULL.DMP FULL=Y 如果要执行完全导出,必须具有 阅读全文
posted @ 2016-10-18 08:59 yasepix 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 1.普通SID方式 jdbc:oracle:thin:username/password@x.x.x.1:1521:SID 2.普通ServerName方式 jdbc:Oracle:thin:username/password@//x.x.x.1:1522/ABCD 3.RAC方式 jdbc:ora 阅读全文
posted @ 2016-09-30 15:42 yasepix 阅读(1681) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2016-09-02 16:17 yasepix 阅读(238) 评论(0) 推荐(0) 编辑
摘要: http://blog.chinaunix.net/uid-20694808-id-57752.html Cross Enterprise Document Sharing 跨机构文档共享 IheOS http://sourceforge.net/projects/iheos/ IheOS源自NIS 阅读全文
posted @ 2016-08-26 17:55 yasepix 阅读(943) 评论(0) 推荐(0) 编辑
摘要: Java内部类的作用 博客分类: 20110408实习 JavaCC++C#.net Java内部类的作用 20110408实习 JavaCC++C#.net 推荐一、 定义 放在一个类的内部的类我们就叫内部类。 二、 作用 1.内部类可以很好的实现隐藏 一般的非内部类,是不允许有 private 阅读全文
posted @ 2016-08-16 14:58 yasepix 阅读(8750) 评论(0) 推荐(0) 编辑
摘要: public class Test { public static void main(String[] args) { Integer a = 12; Integer b = 12; System.out.println(a == b); System.out.println(a.equals(b)); ... 阅读全文
posted @ 2016-08-15 15:15 yasepix 阅读(200) 评论(0) 推荐(0) 编辑
摘要: public class Base { private String name="base"; public Base(){ sayHello(); } void sayHello() { System.out.println("Base hello " + name); } } class Derived extend... 阅读全文
posted @ 2016-08-12 11:47 yasepix 阅读(238) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 27 下一页