码迷,mamicode.com
首页 >  
搜索关键字:hello    ( 17822个结果
JAVA中this用法小结
Java中的this随处可见,用法也多,现在整理有几点:1. this是指当前对象自己。当在一个类中要明确指出使用对象自己的的变量或函数时就应该加上this引用。如下面这个例子中: 1 public class Hello { 2 3 String s = "Hello"; 4 5 pu...
分类:编程语言   时间:2014-05-12 15:27:37    阅读次数:358
每日计划 - html+css作品 : CSS3提示框效果
Hello Everybody!Mouse Hover效果图如上效果很简单,这里我就不赘述了 PS :技术并不代表创意!
分类:Web程序   时间:2014-05-12 08:07:26    阅读次数:241
Android创建新项目及开发
创建一个新项目是很简单的,只要你安装了Eclipse插件,并且你的Eclipse软件版本在3.2或3.3,你就可以开始开发了。首先, 看一下要创建"Hello, World"程序从高级层面上有哪些步骤:1, 通过 File -> New -> Project 菜单,建立新项目"Android ...
分类:移动开发   时间:2014-05-11 00:06:13    阅读次数:400
NSString 与 C++ string字符串的互转
1.C++ string 转换为 NSString std::string str("hello"); // NSString *str = [NSString stringWithString:str.c_str()]; NSString *ocstr = [NSStr...
分类:编程语言   时间:2014-05-10 08:14:05    阅读次数:381
Linux 设备驱动的第一个例子 。
Hello WorldLinux设备驱动的第一个例子。一.源程序(hello.c)#include#includeMODULE_LICENSE("DualBSD/GPL");staticinthello_init(void){printk(KERN_ALERT"Hello,world/n");ret...
分类:系统相关   时间:2014-05-10 07:40:47    阅读次数:408
锋利Jquery 第一天
之前一直学习,现在终于有时间来整理一下文档了。以下文章都是自己学习Jquery 的笔记,希望能留下痕迹,也希望能帮助到您。好了开始我的Jquery第一天。我也是从Hello wrod!开始的。关于jquery 的引用我直接一笔带过。如下: jquery 链式操作 接下来让我们来看看一个复...
分类:Web程序   时间:2014-05-10 06:19:01    阅读次数:282
css实现div块半透明
无标题文档hellodiv块覆盖在hello上,依然是透明的
分类:Web程序   时间:2014-05-10 06:03:45    阅读次数:328
python 判断数据类型
importtypesaaa=0printtype(aaa)iftype(aaa)istypes.IntType:print"thetypeofaaaisint"ifisinstance(aaa,int):print"thetypeofaaaisint"bbb=‘hello‘printtype(bbb)iftype(bbb)istypes.StringType:print"thetypeofbbbisstring"ifisinstance(bbb,str):print"thetypeofbbbisstring..
分类:编程语言   时间:2014-05-09 21:28:19    阅读次数:474
python学习笔记(一)
大家都喜欢用hell world来写第一个程序,python这里也写一个! 直接输入print"hello world"然后运行就ok啦,是不是很简单? 你确实没看错真的这么简单。 当然你可以也在cmd下面进行运行,前提是你配置了系统环境变量,(直接把python的安装路径添加到path里...
分类:编程语言   时间:2014-05-09 20:22:11    阅读次数:322
RE0509
metacharactersrelationtomatch:*:0-multi+:1-multi?:0-1{n},{n,m},{n,}:thenumberofmatchingstringswitcheg:pattern="lynn|coco"src1="hello,mynameislynn"result1="lynn"src2="hello,mynameiscoco"result2="coco"ignorecaseeg:pattern="(?i)Lynn"src="hello,mynameislynn"res..
分类:其他好文   时间:2014-05-09 14:26:32    阅读次数:237
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!