码迷,mamicode.com
首页 >  
搜索关键字:new feature    ( 76509个结果
groovy 简单的弹出菜单popupmenu程序
import groovy.swing.* import javax.swing.* import java.awt.* def swing = new SwingBuilder()swing.frame(title:"hello",show:true){ panel() { def mm=swi....
分类:其他好文   时间:2014-05-01 00:20:13    阅读次数:342
Ajax.BeginForm返回方法OnSuccess
在MVC3里面——程序集 System.Web.Mvc.dll, v4.0.30319有这么一个Ajax.BeginForm异步登录验证的类型,我们在下面给出一个例子:在登录页面Logion.cshtml。使用@using (Ajax.BeginForm("Login", "Home", new.....
分类:其他好文   时间:2014-04-30 23:13:32    阅读次数:561
net.sf.json.JSONException: 'object' is an array. Use JSONArray instead
list集合转换JSON出错误意思是:对象”是一个数组。使用jsonarray代替。解决方法:将JSONObject替换为JSONArray代码:JsonConfig jsonConfig = new JsonConfig();jsonConfig.setCycleDetectionStrategy(CycleDetectionStrategy.LENIENT);JSONArray json = ...
分类:Web程序   时间:2014-04-29 13:43:21    阅读次数:1280
This Android SDK requires Developer Toolkit version 22.6.2 or above
question:  This Android SDK requires Developer Toolkit version 22.6.2 or above please update ADT to the latest version answer: 1.Start Eclipse, then select Help > Install New Software.... 2....
分类:移动开发   时间:2014-04-29 13:18:20    阅读次数:454
Timus 1104. Don’t Ask Woman about Her Age题解
Mrs Little likes digits most of all. Every year she tries to make the best number of the year. She tries to become more and more intelligent and every year studies a new digit. And the number she make...
分类:其他好文   时间:2014-04-29 13:13:21    阅读次数:309
【设计模式】装饰模式
刚看了看设计模式,真是费了好多的脑细胞。 想着想着就到了食堂。O(∩_∩)O哈!正是长身体的时候(大神勿喷), 一定要多吃点。于是我打了一份米饭,然后又端着盛米饭的盘子买了一份凉菜  ,看着还不是很够,就又端着这个盘子买了一条最爱吃的鱼。 -----装饰模式!  饭 meal=new 饭("晚饭"); 米饭rice=new米饭(); 菜vegetables= new 菜(); 鱼fish = new 鱼(); rice.Decorate(meal); vegetables.Decorate(rice);...
分类:其他好文   时间:2014-04-29 13:13:20    阅读次数:318
走进C++程序世界-----operator new delete 重载
在C++ 的世界里,new 和delete 是关键字,而在C的世界里相对应的malloc和free是函数,关键C++的new和delete分析,详见前面的章节,这里就不在过多的介绍了。链接。 下面来研究下关于new 和delete的重载。  1、对比使用重载和未使用重载  未使用“/*File : operator_new.cpp *Auth : sjin *Date : 2014-04...
分类:编程语言   时间:2014-04-28 10:43:41    阅读次数:406
Android定时器,更新数据
-------Handler + Runnable定时器------ privateHandler mShowHandler; private Runnable mShowRunnable;   mShowHandler = new Handler();     mShowRunnable = new Runnable() {       public void run ()...
分类:移动开发   时间:2014-04-28 10:34:40    阅读次数:547
Object.prototype.toString & typeof
Object.prototype.toString & typeof Object.prototype.toString 获取某个对象属于哪种内置类型 typeof 得到某个对象的类型 区别: 举个例子: var arr = new Array(); typeof(arr); //object Object.prototype.toString.call(arr); //[Object Array]...
分类:其他好文   时间:2014-04-28 10:33:42    阅读次数:279
Java 内存分配
Java 内存分配 一个完整的Java程序运行过程会涉及以下内存区域: l 寄存器:JVM内部虚拟寄存器,存取速度非常快,程序不可控制。 l 栈:保存局部变量的值,包括:1.用来保存基本数据类型的值;2.保存类的实例,即堆区对象的引用(指针)。也可以用来保存加载方法时的帧。 l 堆:用来存放动态产生的数据,比如new出来的对象。注意创建出来的对象只包含属于各自的成员变量,并不包括成员方法。...
分类:编程语言   时间:2014-04-27 22:13:18    阅读次数:349
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!