码迷,mamicode.com
首页 >  
搜索关键字:严重 null component ca    ( 48774个结果
Codeforces Helpful Maths
Xenia the beginner mathematician is a third year student at elementary school. She is now learning the addition operation. The teacher has written down the sum of multiple numbers. Pupils should ca...
分类:其他好文   时间:2014-07-22 23:05:53    阅读次数:382
Java常见问题之初始化过程
假设有个名为Dog的类 对于静态字段: 1. 当首次创建类型为Dog的对象时,或者Dog类的静态字段/静态方法首次被访问时,Java解释器会查找类路径,以定位Dog.class文件。 2. 载入Dog.class,此时初始化所有静态字段,如果没有对静态字段进行显示初始化,则默认将所有基本类型字段都设置成标准初值,而引用字段被设置成null。 对于非静态字段: 1. 当创建类型为D...
分类:编程语言   时间:2014-05-01 17:14:54    阅读次数:360
Yii,Linux与windows环境下面的不同
其实与其说是不同倒是可以说是需要注意的地方1. Linux下面,Model Component 等...在调用的时候要注意大小写..下面一段就会报错 1 class LinkController extends Controller 2 { 3 4 public function acti...
分类:Windows程序   时间:2014-05-01 09:44:53    阅读次数:593
有趣的sql
1.给表添加,修改字段--添加alter table Infoadd ExpireDate varchar(50) not null--修改(手动修改表结构时,有时会遇到TimeOut过期的问题,用sql改的时候没有发现异常)alter table Infoalter column ExpireDa...
分类:数据库   时间:2014-05-01 05:24:10    阅读次数:489
c++ ACM常用函数
1 保留小数点后两位#include cout const char * spilt="/";char *p;p=strtok(str,spilt);while(p!=NULL){ //cout #includesort(Rs.begin(),Rs.end());sort(Rs.begin(),Rs...
分类:编程语言   时间:2014-05-01 05:05:45    阅读次数:409
LeetCode:Rotate List
题目链接Given a list, rotate the list to the right bykplaces, wherekis non-negative.For example:Given1->2->3->4->5->NULLandk=2,return4->5->1->2->3->NULL.首...
分类:其他好文   时间:2014-05-01 04:52:19    阅读次数:288
Android Camera子系统之源代码View
本文基于Android 4.2.2+Linux3.6.9+SAMA5D3 SoC从源代码的角度审视Android Camera子系统。     应用层 Androd原生Camera应用 /system/app/LegacyCamera.apk  http://androidxref.com/4.2.2_r1/xref/packages/apps/LegacyCamera/   Ca...
分类:移动开发   时间:2014-04-30 22:32:38    阅读次数:431
Entity Framework Database/Code First实现对表进行压缩配置
我采用Database First,用Sql很容易就可以做到对一个表进行压缩。如以下: CREATE TABLE [dbo].[Entities]( [Id] [int] IDENTITY(1,1) NOT NULL, [Name] [nvarchar](max) NULL, Primary Key Clustered ([Id] ASC) WITH (DATA_...
分类:数据库   时间:2014-04-30 22:23:39    阅读次数:436
js中由undefined说起
typeof()函数 返回的是字符串,有六种可能:"number"、"string"、"boolean"、"object"、"function"、"undefined"   js中undefined,null,NaN的区别 1.类型分析: js中的数据类型有undefined,boolean,number,string,object等5种,前4种为原始类型,第5种为引用类型。 未定义的值...
分类:Web程序   时间:2014-04-29 13:45:21    阅读次数:414
链表《2》使用函数操作链表
使用函数操作链表 1:计算链表中结点的个数:定义一个Length_list()函数用于计算链表中结点的个数 函数代码: //计算链表中结点的个数 void Length_list(PNODE pHead) { PNODE p = pHead->pNext; int len = 0; while(NULL != p) { len++; p = p->pNext; ...
分类:其他好文   时间:2014-04-29 13:28:21    阅读次数:302
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!