from sys import argv from os.path import existsscript, from_file, to_file = argvprint "Copying from %s to %s" % (from_file, to_file)# we could do thes...
分类:
其他好文 时间:
2014-10-23 22:37:21
阅读次数:
324
Main.m
#import
#import "Piano.h"
#import "Violin.h"
#import "Actor.h"
/*
乐器(Instrument)分为:钢琴(Piano)、小提琴(Violin)。
各种乐器的弹奏( play )方法各不相同。演奏家可以使用各种乐器。
*/
int main(int argc, const char * argv[...
分类:
其他好文 时间:
2014-10-23 20:53:11
阅读次数:
260
Main.m
/*
improt和include都是导入文件,
区别是:include只是单纯的复制,
但是import是在导入之前会判断当前文件是否存在已有的文件,
如果没有再导入,否则不会导入
*/
int main(int argc, const char * argv[])
{
@autoreleasepool {
...
分类:
其他好文 时间:
2014-10-23 20:52:04
阅读次数:
167
csh与bash比较:一、csh的while循环控制结构及if then:#!/bin/csh -fwhile ($#argv >= 1)if ("$1" == "-s") thenshiftif ($#argv >= 1) thenset source = $1shiftendifelse if ...
分类:
其他好文 时间:
2014-10-23 20:37:24
阅读次数:
178
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