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
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
>__ 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
>__ 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
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
首先是从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