码迷,mamicode.com
首页 >  
搜索关键字:cannot call method g    ( 28012个结果
HTML的表单form以及form内部标签
form表单的使用 <!-- 标签名称:form 表单标签 属性:action:提交的去向,目标地址的url method:设置提交请求的方式,get和post;默认为get get和post提交有什么区别?------------------------ get传输:将内容信息放在地址栏传输,而且长度限制在1k,而且安全性不好。 post传输:将内容房子body信...
分类:Web程序   时间:2014-07-22 23:01:15    阅读次数:359
异常/usr/bin/install: cannot create regular file `/usr/local/jpeg6/include/jconfig.h'
出现下列异常:  /usr/bin/install -c -m 644 jconfig.h /usr/local/jpeg6/include/jconfig.h /usr/bin/install: cannot create regular file `/usr/local/jpeg6/include/jconfig.h': No such file or directory ...
分类:其他好文   时间:2014-07-22 22:59:55    阅读次数:893
记:Ubuntu14.04 Android加载项目失败
Android 加载项目失败: sdk/build-tools/android-4.4.2/aapt: error while loading shared libraries: libz.so.1: cannot open shared object file: No such file or ....
分类:移动开发   时间:2014-05-06 09:19:19    阅读次数:418
开发安全卫士中遇到的问题
异常一:Can‘tcreatehandlerinsidethreadthathasnotcalledLooper.prepare()这个异常是因为非主线程中默认没有创建对象。所以就要看看该方法所在的线程是不是主线程一看。真的不是。于是取消newThread().start();搞定。问题1:@OverridepublicvoidonClick(DialogInterfacedialog,i..
分类:其他好文   时间:2014-05-03 00:48:54    阅读次数:276
纠正for循环中关键字continue的执行顺序
下面是一个小程序,可以很好阐述 关键字:continue,break; package org.song.loop; public class TestLoop { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub int tot...
分类:其他好文   时间:2014-05-03 00:03:21    阅读次数:311
characterCustomezition的资源打包代码分析
using System.Collections.Generic;using System.IO;using UnityEditor;using UnityEngine;class CreateAssetbundles{ // This method creates an assetbundl...
分类:其他好文   时间:2014-05-02 14:55:17    阅读次数:346
关键路径法
如果你对项目管理、系统架构有兴趣,请加微信订阅号“softjg”,加入这个PM、架构师的大家庭 关键路径法(Critical Path Method, CPM)是一种基于数学计算的项目计划管理方法,是网络图计划方法的一种,属于肯定型的网络图。关键路径法将项目分解成为多个独立的活动并确定每个活动的工期...
分类:其他好文   时间:2014-05-02 13:35:14    阅读次数:416
ret和call的原理
1.ret 指令用栈中的数据,修改IP的内容,从而实现近转移 CPU执行ret指令时,进行下面两步操作: (1)(IP)=((ss)*16+(sp))  //使用栈顶元素修改IP实现跳转 (2)(sp)=(sp)+2 2.retf 用栈中的数据,修改CS和IP的内容,从而实现远转移 CPU执行retf指令时,进行下面四步操作: (1)(IP)=((ss)*16+(sp)) ...
分类:其他好文   时间:2014-05-02 06:54:21    阅读次数:394
探究 C++ Singleton(单例模式)
一、静态化并不是单例模式   初学者可能会犯的错误, 误以为把所有的成员变量和成员方法都用 static 修饰后, 就是单例模式了: class Singleton { public:     /* static method */      private:     static Singleton m_data; //static data member 在类中声明,在...
分类:编程语言   时间:2014-05-02 04:48:34    阅读次数:541
libpcre.so.1 cannot be found
./nginx: error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory...
分类:其他好文   时间:2014-04-30 22:43:38    阅读次数:346
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!