码迷,mamicode.com
首页 >  
搜索关键字:todo    ( 2905个结果
android 子定义View(2)
onMeasure中获取自定义View的mode 和width, height, // TODO 测量 int mode = MeasureSpec.getMode(widthMeasureSpec); int width = MeasureSpec.getSize(widthMeasureSpec ...
分类:移动开发   时间:2016-07-09 18:01:14    阅读次数:282
常用自定义工具类
/// <summary> /// 服务器端产生客户端脚本的封装类 /// </summary> public class jsHint { public jsHint() { // // TODO: 在此处添加构造函数逻辑 // } /// <summary> /// 弹出提示信息 /// </s ...
分类:其他好文   时间:2016-07-08 15:13:17    阅读次数:159
MFC resizer封装
用法: #include "resizer.h" 在mfc对话框头文件里面添加成员: CResizer m_Resizer; mydialog.cpp里面: OnInitDialog() { ...... // TODO: 在此添加额外的初始化代码 m_Resizer.Initialize(*thi ...
分类:编程语言   时间:2016-07-08 10:08:27    阅读次数:197
try catch
try { //可能产生异常的代码 } catch (Exception e) { // TODO: handle exception //异常代码处理 } finally { //无论异常不异常都会执行的代码 } ...
分类:其他好文   时间:2016-07-07 09:48:20    阅读次数:121
JSBinding / About JSComponent
todo ...
分类:Web程序   时间:2016-07-06 13:23:38    阅读次数:236
Using zend-paginator in your Album Module
Using zend-paginator in your Album Module TODO Update to: follow the changes in the user-guide use SQLite-compatible SQL syntax, and provide a script ...
分类:其他好文   时间:2016-07-05 12:03:20    阅读次数:218
字符串处理java与c的对比
5.字符串 public class World { public static void main(String[] args) { // TODO 自动生成的方法存根 String name ="Tom"; String sex ="Felmale"; String from ="USA"; S ...
分类:编程语言   时间:2016-07-02 11:45:00    阅读次数:257
tiaozhuan
// TODO Auto-generated method stub Intent in=new Intent(MainActivity.this, Info.class); //in.putExtra("id", data.get(position).getId()); Bundle bun=ne ...
分类:其他好文   时间:2016-06-30 20:05:37    阅读次数:331
Android 重写onBackPressed()方法 不执行问题
@Overridepublic void onBackPressed() { // TODO Auto-generated method stub super.onBackPressed(); Toast.makeText(this, "呵呵哈哈", Toast.LENGTH_LONG).show( ...
分类:移动开发   时间:2016-06-30 16:21:51    阅读次数:431
python面向对象
一、组成:方法和属性。类定义:classMyClass():defsay(self):print("hello")test=MyClass()test.say()2.属性:self.attr=valueTODO:普通属性:静态属性:方法:deffunc():TODO:普通方法:类方法:静态方法:3.特殊的方法:构造函数:def__init__(self,name):self.name=name其..
分类:编程语言   时间:2016-06-29 01:13:59    阅读次数:152
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!