现在我有hello1.cpp和hello2.cpp两个文件,现在我要生成动态链接库libhello.so和静态链接库libhello.a。以下为步骤: 1.生成动态链接库: g++ -m32 hello1.cpp hello2.cpp -fPIC -shared -o ../lib/linux32/ ...
分类:
其他好文 时间:
2017-07-07 21:36:00
阅读次数:
155
#函数,方法#普通方法def hello(): print('hello')hello()#带形参的方法def hello1(name): print('hello%s'%name)hello1('布拉德皮特')#多个参数的方法def hello2(name1,name2): print('hell ...
分类:
编程语言 时间:
2017-06-10 20:20:59
阅读次数:
244
以下的六个程序片段主要完毕这些事情: 输出Hello, World混乱C语言的源码 以下的全部程序都能够在GCC下编译通过,仅仅有最后一个须要动用C++的编译器g++才干编程通过。 hello1.c 1 2 3 4 5 6 7 8 9 10 11 #define _________ } #defin ...
分类:
编程语言 时间:
2017-06-02 11:40:04
阅读次数:
258
1 lua中函数作为表中元素时有三种定义方式 采用‘:’来定义,实际上隐藏了一个形参的声明,这个形参会截获调用函数时的第一个实参并把它赋值给self 2 调用方式,点号和冒号 functb:hello1()functb.hello2() 总结起来就是带:号调用表的函数时,会把表赋值给self,这样函 ...
分类:
其他好文 时间:
2017-05-31 18:54:24
阅读次数:
596
1.控制语句 (1)if控制语句 (2)switch选择控制语句 (3)for 循环控制语句 hello0 hello1 hello2 hello3 hello4 hello5 hello6 hello7 hello8 hello9 (4)while 循环控制语句 hello0 hello1 hel ...
分类:
Web程序 时间:
2017-05-23 17:22:13
阅读次数:
203
启动一个activity,这个activity的action为hello1,category为category1,必须同时指定action和category 才可以找到对应的activity。只指定action的话,是找配置了 ...
分类:
其他好文 时间:
2016-12-02 21:55:53
阅读次数:
144
using namespace std; namespace name1 { void func() { cout << "Hello1" << endl; } } namespace name2 { void func() { cout << "Hello2" << endl; } } names ...
分类:
编程语言 时间:
2016-10-22 20:50:33
阅读次数:
190
#lambda没有名字的函数,特别简单的函数,只有return语句的函数
#语法lambda返回值
defhello(x):
returnx[1]
printhello([1,2])
hello=lambdax:x[1]
hello1=lambdax:x[0]+x[1]
hello2=lambdax,y:x*y
printhello([1,2])
printhello1([3,4])
printhello2(2,3)
分类:
编程语言 时间:
2016-07-29 19:36:34
阅读次数:
225
1.1文件读写1.1.1读文件>>>f=open(‘/root/python/hello.py‘,‘r‘)#标识符r表示读>>>f=open(‘/root/python/hello1.py‘,‘r‘)#文件不存在报错Traceback(mostrecentcalllast):File"<stdin>",line1,in<module>FileNotFoundError:[Errno2]Nosuchfileord..
分类:
编程语言 时间:
2016-07-14 22:11:45
阅读次数:
277
6个变态的C语言Hello World程序 下面的六个程序片段主要完成这些事情: 输出Hello, World 混乱C语言的源代码 下面的所有程序都可以在GCC下编译通过,只有最后一个需要动用C++的编译器g++才能编程通过。 hello1.c 1 2 3 4 5 6 7 8 9 10 11 #de ...
分类:
编程语言 时间:
2016-06-01 14:17:07
阅读次数:
217