码迷,mamicode.com
首页 >  
搜索关键字:hello    ( 17822个结果
C#语言基础知识(4):C#中的String.Format方法
定义String.Format是将指定的String类型的数据中的每个格式项替换为相应对象的值的文本等效项.(1)string p1="xiaomeng";string p2="xiaobei";Response.Write(String.Format("Hello {0},I'm {1}",p1,...
分类:其他好文   时间:2014-07-09 22:39:53    阅读次数:249
ThinkPHP从零开始(一)安装和配置
thinkPHP的学习笔记(一),thinkPHP的安装,配置和hello world!
分类:Web程序   时间:2014-07-09 22:33:15    阅读次数:340
C#中MessageBox使用方法大全(附效果图)
我们在程序中常常会用到MessageBox。 MessageBox.Show()共同拥有21中重载方法。现将其常见使用方法总结例如以下:1.MessageBox.Show("Hello~~~~");最简单的,仅仅显示提示信息。2.MessageBox.Show("There are somethi....
分类:其他好文   时间:2014-07-09 22:30:26    阅读次数:313
NodeJs学习(一)
第一步,大家都知道的,肯定下载安装包,下载地址:http://nodejs.org/下载完成后直接安装,安装成功后,打开cmd,输入:node -v这时候,表示我们已经安装成功了。第二步,理所当然的,"hello world" 程序新建一个hello.js文件,里边输入:console.log("h...
分类:Web程序   时间:2014-07-09 20:35:43    阅读次数:243
Kinect 开发 —— Hello,Kinect
控制台输出深度数据: using System;using System.Collections.Generic;using System.Linq;using System.Text;using Microsoft.Kinect;namespace HelloKinectMatrix{ class...
分类:其他好文   时间:2014-07-06 15:23:26    阅读次数:179
【web开发学习笔记】Structs2 Action学习笔记(一)
1、org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter准备和执行 2、 struts2 /*     url-pattern约定熟成只写/*,没必要写*.action 3、 /Hello.jsp ...
分类:Web程序   时间:2014-07-06 11:45:18    阅读次数:192
ios 字符串
1、判断字符串是否包含某个字符         if( [str rangeOfString:@"hello"].location != NSNotFound) {                          NSLog(@"yes");                      } else {                          NSLog(@...
分类:移动开发   时间:2014-07-06 11:18:41    阅读次数:226
c语言中读入带空格的字符串
问题:  scanf("%s", a); 运行输入hello world   回车 则输入到a的只是空格之前的部分,怎样把空格之后的部分也输出? 1. scanf( "%[^\n]", str ); #include int main(){ char str[50]; scanf( "%[^\n]", str ); printf( "%s\...
分类:编程语言   时间:2014-07-06 11:05:52    阅读次数:211
Python学习笔记<一>:概述
1.print语句输出和交互式解释器输出的不同 在下面的例子中,我们把一个字符串赋值给变量myString,先用print 来显示变量的内容, 之后用变量名称来显示。 >>> myString = 'Hello World!' >>> print myString Hello World! >>> myString 'Hello World!' 注意:在仅用变量名时,输出的字符串是...
分类:编程语言   时间:2014-07-06 09:04:06    阅读次数:203
JAVA学习笔记 -- 把资源文件打包到jar包
初学GUI,用Eclipse导出jar包,设定的最小化图标不能显示(hello.png文件放在项目的根目录下)。代码如下: import javax.swing.JFrame; import java.awt.Toolkit; import java.awt.Image; import java.net.URL; public class GUITest { public static vo...
分类:编程语言   时间:2014-07-06 00:23:37    阅读次数:356
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!