上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 47 下一页
摘要: 方法就是不断除16取余,此处是用位运算实现 public static void ToHex(int num) { StringBuffer sb=new StringBuffer(); for(int i=0;i9) { sb.append((char)(temp-10+'A'));... 阅读全文
posted @ 2014-12-31 22:32 静以养身 俭以养德 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 先看实例:父类class BaseClass{ private int value; public void printValue() { this.run(); //注意这儿的是this } private void run(){ S... 阅读全文
posted @ 2014-12-31 15:39 静以养身 俭以养德 阅读(154) 评论(0) 推荐(0) 编辑
摘要: public 所有类都可以访问protected 同一包内的类和子类(包括子类的子类)可以访问(default) 同一包内的类private 仅本类和本类的内部类可以访问1.栈 - 由编译器自动分配释放2.堆 - 一般由程序员分配释放,若程序员不释放,程序结束时可能由OS回收3.全局区(静态区),全... 阅读全文
posted @ 2014-12-31 15:09 静以养身 俭以养德 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 1、字符串不属于基本数据类型(基本数据类型有【byte,int,char,float,double,boolean,short,long】),字符串由单个或多个字符组成,本质上是字符数组,Java中提供两种实现字符串的类,分别是String、StringBuffer类。String类字符串的声明:1... 阅读全文
posted @ 2014-12-31 14:15 静以养身 俭以养德 阅读(695) 评论(0) 推荐(0) 编辑
摘要: 1、创建工作空间 public static IWorkspace CreateWorkspace(string pName, string pPath) { IWorkspaceFactory workspaceFactory = null; ... 阅读全文
posted @ 2014-12-30 15:35 静以养身 俭以养德 阅读(889) 评论(0) 推荐(0) 编辑
摘要: ConstantValueDescriptionesriFTSimple1Simple Feature.esriFTSimpleJunction7Simple Junction Feature.esriFTSimpleEdge8Simple Edge Feature.esriFTComplexJun... 阅读全文
posted @ 2014-12-30 15:32 静以养身 俭以养德 阅读(197) 评论(0) 推荐(0) 编辑
摘要: IFeatureWorkspace接口是在工作空间中创建对象主要使用的接口。方法:DescriptionCreateFeatureClassCreates a new standalone feature class under the workspace.//创建一个FeatureClassCre... 阅读全文
posted @ 2014-12-30 15:13 静以养身 俭以养德 阅读(356) 评论(0) 推荐(0) 编辑
摘要: MembersDescriptionCountThe number of properties contained in the property set.包含属性个数GetAllPropertiesThe name and value of all the properties in the pr... 阅读全文
posted @ 2014-12-30 14:56 静以养身 俭以养德 阅读(649) 评论(0) 推荐(0) 编辑
摘要: 命名空间:ESRI.ArcGIS.esriSystem使用:利用IName来打开一个工作空间MembersDescriptionNameStringThe name string of the object.OpenOpens the object referred to by this name.... 阅读全文
posted @ 2014-12-30 14:45 静以养身 俭以养德 阅读(278) 评论(0) 推荐(0) 编辑
摘要: 概述:给成员提供存取,提供工作空间名称信息。注:该接口已经取代iworkspacename2 iworkspacename。请考虑使用较新的版本。DescriptionBrowseNameThe browse name of the WorkspaceName.CategoryThe categor... 阅读全文
posted @ 2014-12-30 14:25 静以养身 俭以养德 阅读(1023) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 47 下一页