main.m
#import
#import "Person.h"
int main(int argc, const char * argv[])
{
//创建person对象
Person *person = [[Person alloc] init];
//设置person对象的名字和年龄
[person setName:@"Jack"];...
分类:
其他好文 时间:
2014-10-22 10:10:41
阅读次数:
177
创建一个Person工程
main.m
#import
#import "Person.h"
int main(int argc, const char * argv[])
{
/*____________________创建person对象______________________*/
//在OC里面对象使用指针声明的
//alloc在内存中申请一块内存,用...
分类:
其他好文 时间:
2014-10-22 08:46:07
阅读次数:
196
argv分别为,可执行文件名、读入的原始图像、输出原始图像的灰度值、输出原始图像灰度值沿x轴方向的一阶微分、输出原始图像灰度值沿x轴方向的二阶微分。#include #include #include #include #include #pragma comment( lib, "opencv_h...
分类:
其他好文 时间:
2014-10-22 06:23:18
阅读次数:
263
首先是从main函数开发:
int main(itn argc,char* argv[])
{
pthread_t thread;
int count;
int status;
client_threads = CLIENT_THREADS;
for(count = 0;count
{
status = pthread_create(&thread,NU...
分类:
其他好文 时间:
2014-10-21 21:36:55
阅读次数:
297
#include #include int main (int argc, char **argv)
{ char *a = "0123456789"; char b[] = "0123456789"; char c[100] ="0123456789"; int d[100] ={0,1,2,3,...
分类:
其他好文 时间:
2014-10-21 19:34:17
阅读次数:
243
#import
int main(int argc, const char *
argv[])
{
// 创建数组
NSArray *arr1 = nil;
// NSLog(@"%p", arr1);
NSObject *obj = [NSObject new];
arr1 = [NSArray arrayWithObjects:@"...
分类:
编程语言 时间:
2014-10-21 17:41:36
阅读次数:
195
Qt中添加背景图片的方法1. QPalette的方法#include#includeintmain(intargc,char*argv[]){QApplicationapp(argc,argv);QFrame*frame=newQFrame;frame->resize(400,700); QPixm...
分类:
其他好文 时间:
2014-10-21 15:00:08
阅读次数:
251
from:http://blog.csdn.net/mr_jj_lian/article/details/6835137命令行参数解析函数 —— getopt()getopt()函数声明如下:#include int getopt(int argc, char * const argv[], con...
分类:
其他好文 时间:
2014-10-21 12:00:26
阅读次数:
211
$_SERVER['PHP_SELF']#当前正在执行脚本的文件名,与documentroot相关。$_SERVER['argv']#传递给该脚本的参数。$_SERVER['argc']#包含传递给程序的命令行参数的个数(如果运行在命令行模式)。$_SERVER['GATEWAY_INTERFACE...
分类:
Web程序 时间:
2014-10-21 00:59:15
阅读次数:
223
刚学typedef,当typedef后的类型别名用在其他变量声明中时,可能会对其使用有点迷惑 1 int main(int argc, char *argv[]) 2 { 3 int x = 3; 4 typedef int * p; 5 p const cp = &x; ...
分类:
其他好文 时间:
2014-10-21 00:39:29
阅读次数:
157