码迷,mamicode.com
首页 >  
搜索关键字:argc    ( 2629个结果
点语法的应用
Main.m #import #import "Person.h" int main(int argc, const char * argv[]) { //创建person对象 Person *person = [[Person alloc] init]; //设置值 // [person setName:@"tom"]; // [person...
分类:其他好文   时间:2014-10-23 16:27:43    阅读次数:175
类与类之间的简单传值
Main.m #import #import "Car.h" #import "Engine.h" #import "Lamp.h" /* 设计如下几个类,Car自定义初始化方法,初始化方法传入引擎对象和车灯对象。 当车启动的时候,会调用引擎转动,车灯亮灯,当车停止的时候调用引擎停止转动,车灯熄灭。 */ int main(int argc, const char * argv...
分类:其他好文   时间:2014-10-23 16:27:14    阅读次数:217
方法重写3之多态
Main.m #import #import "ColorPrinte.h" #import "Blackprinter.h" #import "ThreeDPrinter.h" #import "Printer.h" #import "Person.h" int main(int argc, const char * argv[]) { /* //使用彩色打印机打印 ...
分类:其他好文   时间:2014-10-23 16:22:56    阅读次数:249
[OpenCV] 3、直线提取 houghlines
>__ 4 5 using namespace cv; 6 using namespace std; 7 8 int main(int argc, char** argv) 9 {10 const char* filename ="pic1.png";11 Mat src = i...
分类:其他好文   时间:2014-10-22 23:36:30    阅读次数:198
[OpenCV] 1、读取图片
>__ 2 #include 3 using namespace std; 4 using namespace cv; 5 int main(int argc, char* argv[]) 6 { 7 const char* imagename = "lena.jpg"; 8 Ma...
分类:其他好文   时间:2014-10-22 23:15:47    阅读次数:260
指针常量&指向常量的指针
3 4 #include "stdafx.h" 5 6 int main(int argc, char* argv[]) 7 { 8 int a; 9 int b;10 int* const p1 = &a; //常量指针,指针不可以改,但是指针指向的内容...
分类:其他好文   时间:2014-10-22 23:15:33    阅读次数:213
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
客户端、服务器端编程
首先是从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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!