码迷,mamicode.com
首页 >  
搜索关键字:void    ( 62627个结果
Java 之复合赋值运算符
1.引入问题 切入正题,看下面代码,结果应该是怎么样的public class App{ public static void main( String[] args ){ byte a=1 ; int b = 10; a= a+b; ...
分类:编程语言   时间:2015-10-30 17:01:26    阅读次数:152
Play Framework 完整实现一个APP(十三)
添加用户编辑区1.修改Admin.index()public static void index() { List posts = Post.find("author.email", Security.connected()).fetch(); render(posts);} 2.修改...
分类:移动开发   时间:2015-10-30 16:47:43    阅读次数:293
ios使用webview浏览指定网页
#import "EDRViewController.h"@interface EDRViewController ()@property(nonatomic,weak) UIWebView * webView;@end@implementation EDRViewController- (void...
分类:移动开发   时间:2015-10-30 15:25:51    阅读次数:261
java join 多线程顺序执行
public?static?void?main(String[]?args)?throws?InterruptedException?{ ????????final?List<Thread>?threads?=?new?ArrayList<Thread>(); ????????for(int?i=0;i<100;i++){...
分类:编程语言   时间:2015-10-30 14:21:16    阅读次数:257
001 The Hello World In Csharp
C#是面向对象编程语言,语法和JAVA非常相似。接下来让我们看一下C#的Hello world。1 //001.cs2 using System;3 public class Hello4 {5 public static void Main()6 {7 System...
分类:其他好文   时间:2015-10-30 14:11:23    阅读次数:109
代码模拟实现十六进制转二进制
public class TowAdecimal{ private int sum;//用于转换值 private static String s = "11";//十六进制的值 public static void main(String[] args){ TowAdecimal a = new ...
分类:其他好文   时间:2015-10-30 13:58:40    阅读次数:168
TreeMap 排序
一、TreeMapTreeMap 默认排序规则:按照key的字典顺序来排序(升序)当然,也可以自定义排序规则:要实现Comparator接口。用法简单,先看下下面的demopublic class SortDemo { public static void main(String[] args...
分类:编程语言   时间:2015-10-30 12:25:21    阅读次数:299
c 链表
#include #include int length=0;struct ListNode { int val; struct ListNode *next;};void make(struct ListNode* &list){ struct ListNode *tail=...
分类:其他好文   时间:2015-10-30 12:11:33    阅读次数:243
任意修改网页内容JS代码
浏览器输入框执行,chrome需要粘贴后,需要在前面手打javascript:因为粘贴的会自动过滤javascript:document.body.contentEditable='true'; document.designMode='on'; void 0
分类:Web程序   时间:2015-10-30 12:02:35    阅读次数:376
精确计时MSVC
硬件内部计时器精度 US级别 #include<iostream> #include?"functional" #include?"windows.h" using?namespace?std; #include?<WinBase.h>?? long?long?calculateMS(std::function<void()>?process...
分类:其他好文   时间:2015-10-30 10:57:48    阅读次数:275
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!