码迷,mamicode.com
首页 >  
搜索关键字:while True    ( 51585个结果
集合
Set接口。set集合不允许包含相同的元素。set判断两个对象是否相同是根据equals方法。如果两个对象用equals方法返回的是true,set不会接受这两个对象。 HashSet是set接口的典型实现,HashSet按hash算法来存储集合中的元素。因此具有很好的存储和查找性能。Has...
分类:其他好文   时间:2014-07-22 23:12:56    阅读次数:394
php中的雷同方法
php中又很多的可选语法,比如echo使用echo()和print()都可以输出文本,他们的不同之处在于print()函数有一个返回值1代表输出成功,0代表输出失败,二echo()就没有返回值了。逻辑表达式中的可选性我们看下面的语句一次输出的结果是:int(6) bool(true) int(6) ...
分类:Web程序   时间:2014-07-22 23:12:32    阅读次数:365
20140429
1、单链表循环体用while(p->next!=NULL)而不用while(p!=NULL)的原因 node *Find_MidNode(node *head){ if(head->next==NULL||head->next->next==NULL) return head->next; node...
分类:其他好文   时间:2014-07-22 23:11:15    阅读次数:374
文字纵向打印
一之半解,以为PageSetting能解决横纵向的问题printdocument.DefaultPageSettings.Landscape = true;//横向printdocument.DefaultPageSettings.Landscape = false;//纵向其实这只是一个进纸方向,...
分类:其他好文   时间:2014-04-30 16:46:30    阅读次数:429
C#常见算法题目
//冒泡排序publicclassbubblesorter{publicvoidsort(int[]list){inti,j,temp;booldone=false;j=1;while((jlist[i+1]){done=false;temp=list[i];list[i]=list[i+1];li...
分类:其他好文   时间:2014-04-29 17:21:45    阅读次数:429
判断IE8及其以下
$.support.leadingWhitespace如果是false, 就是ie8及以下, 如果是true, 就是新的浏览器, 包括firefox, chrome, ie9以上
分类:其他好文   时间:2014-04-29 17:14:47    阅读次数:255
Html.text(转载)
2、Html.ValidationSummary:用来显示ModelState字典中所有验证错误的无序列表,使用布尔值类型参数(true)来告知辅助方法排除属性级别的错误,只显示ModelState中与模型本身有关的错误,而不显示与具体模型属性相关的错误。3、示例:ModelState.AddMod...
分类:Web程序   时间:2014-04-29 17:12:47    阅读次数:624
VMWare 无法进入BIOS的解决方法
关闭系统,打开虚拟机配置文件(.vmx文件),该文件位于所装虚拟机目录(不是虚拟机软件目录),在配置文件末尾加上 bios.forceSetupOnce = "TRUE"或者bios.bootDelay = "xxxx"(xxxx用具体数字代替,以毫秒为单位)。来自为知笔记(Wiz)
分类:移动开发   时间:2014-04-29 17:12:46    阅读次数:428
[Leetcode] Valid Number
Validate if a given string is numeric.Some examples:"0"=>true" 0.1 "=>true"abc"=>false"1 a"=>false"2e10"=>trueNote:It is intended for the problem stat...
分类:其他好文   时间:2014-04-29 16:45:45    阅读次数:398
九的余数
#include#include#include#include #includeusing namespace std;char c[1000005];int main(int argc, char* argv[]){ int n; scanf("%d", &n); while(n--) { .....
分类:其他好文   时间:2014-04-29 16:31:46    阅读次数:286
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!