// 测试打开一个文件var fileref = new File
("/E/work/没有图片提交/2014/2014.5.19/G20/部件渲染测试/png/tianji_1-41001_bujian35.png")var
docref = app.open (fileref)// 打印路径 /...
分类:
其他好文 时间:
2014-05-18 19:58:07
阅读次数:
272
//LINUX中GCC类型长度(字节)//typex86_sizeof(type)x64_sizeof(type)//char11//short22//int44//long48//void*48//longlong88//float44//double88//__GNUC__/nux//__i38...
分类:
其他好文 时间:
2014-05-18 19:48:00
阅读次数:
306
package main import ("fmt")//对象定义type Rect
struct{x,y float64width ,height float64} //对象方法实现func (r *Rect)
Area()float64{return r.width*r.height}//Go语...
分类:
其他好文 时间:
2014-05-18 19:36:55
阅读次数:
405
下面是主要代码:- (void) addPicEvent{
//先设定sourceType为相机,然后判断相机是否可用(ipod)没相机,不可用将sourceType设定为相片库
UIImagePickerControllerSourceType sourceType = UIImagePicker...
分类:
移动开发 时间:
2014-05-18 19:30:14
阅读次数:
284
前言 本文将介绍 OpenCV 中的矩阵结构 CvMat
并提供一些很实用的技巧。CvMat的类型定义 1 typedef struct CvMat 2 { 3 int type; // 数据类型 4 int
step; // 行长度 5 int* refcou...
分类:
其他好文 时间:
2014-05-18 18:54:07
阅读次数:
1771
C#代码如下: public interface IConfigInfo { } public
class A : IConfigInfo { } public class b { void bb(IConfigInfo a) { Type t =
a.GetType(); } }VB.net代码如...
分类:
其他好文 时间:
2014-05-18 18:53:46
阅读次数:
188
linux中的经典宏定义 offsetof
定义:offsetof在linux内核的include/linux/stddef.h中定义。 #define offsetof(TYPE, MEMBER)
((size_t) &((TYPE *)0)->MEMBER)说明:获得结构体(TYPE)的变量成员...
分类:
系统相关 时间:
2014-05-18 01:30:21
阅读次数:
515
$ su - rootPassword:su: Authentication
failureSorry.这时候输入$ sudo passwd rootEnter new UNIX password:Retype new UNIX
password:passwd: password updated s...
分类:
其他好文 时间:
2014-05-17 20:08:38
阅读次数:
241
生成图片:1.生成图片$img=imagecreaturecolor(宽,高);2.生成颜色(1)当第一次调用生成颜色的方法,是生成背景颜色。
$bg=imagecolorallocate($img,0,0,0);(2) 第二次调用是生成图片上的文字或其他样式的颜色 $te=imagecolo...
分类:
其他好文 时间:
2014-05-17 19:43:28
阅读次数:
173
c++指针只能说博大精深,在用的时候感觉好晕1.指针类型转换/*在指针的强制类型转换:ptr1=(TYPE*)ptr2中,如果sizeof(ptr2的类型)大于sizeof(ptr1的类型),那么在使用指针ptr1来访问ptr2所指向的存储区时是安全的。如果sizeof(ptr2的类型)小于size...
分类:
编程语言 时间:
2014-05-17 19:08:28
阅读次数:
335