码迷,mamicode.com
首页 >  
搜索关键字:argv    ( 3650个结果
Object-C之set方法,get方法
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
OC入门,创建一个Person工程,给新手用
创建一个Person工程 main.m #import #import "Person.h" int main(int argc, const char * argv[]) { /*____________________创建person对象______________________*/ //在OC里面对象使用指针声明的 //alloc在内存中申请一块内存,用...
分类:其他好文   时间:2014-10-22 08:46:07    阅读次数:196
图像处理之基础---基于opencv的灰度图像微分
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
sizeof 和 strlen 的区别
#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
OC中数组的用法
#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中添加背景图片的方法
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
命令行参数解析函数 —— getopt()
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
PHP中$_SERVER的详细参数
$_SERVER['PHP_SELF']#当前正在执行脚本的文件名,与documentroot相关。$_SERVER['argv']#传递给该脚本的参数。$_SERVER['argc']#包含传递给程序的命令行参数的个数(如果运行在命令行模式)。$_SERVER['GATEWAY_INTERFACE...
分类:Web程序   时间:2014-10-21 00:59:15    阅读次数:223
typedef笔记
刚学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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!