码迷,mamicode.com
首页 >  
搜索关键字:parent    ( 6866个结果
关于C++对象模型的思考
一、我们首先看一个例子,一个孙子类继承了两个父亲类,两个父亲类同时继承同一个爷爷类。 #include using namespace std; class Parent { public: int p_; // p将会被所有的子类继承,也将是二义性的根源 Parent(int p)...
分类:编程语言   时间:2014-06-05 06:00:45    阅读次数:217
matchesSelector及低版本IE中对该方法的实现
matchesSelector用来匹配dom元素是否匹配某css selector。它为一些高级方法的实现提供了基础支持,比如事件代理,parent, closest等。W3C在2006年就提出了该方法草案,Firefox和Safari相继实现,比如 目前除IE6-IE8,Firefox/Chro....
分类:其他好文   时间:2014-06-03 17:02:15    阅读次数:511
cuda核函数再调用核函数,多层并行
#include __global__ void childKernel(int i) { int tid = blockIdx.x*blockDim.x+threadIdx.x; printf("parent:%d,child:%d\n",i,tid); for(int j=i;j<i+10;j++) { printf(",%d",j); } printf("\n");...
分类:其他好文   时间:2014-06-03 03:58:15    阅读次数:206
使用Android-smart-image-view加载网络图片
界面效果 应用的权限   布局文件 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" andr...
分类:移动开发   时间:2014-06-03 00:45:02    阅读次数:303
PHP几个函数
pack:数据装入一个二进制字符串http_build_query: 将数组转化成URL GET参数的形式。get_class:返回对象的类名,注:即使是在父类方法中调用也是返回子类的类名。get_parent_class:返回对象或类的父类名。call_user_func:调用第一个参数所提供的用...
分类:Web程序   时间:2014-06-02 19:17:03    阅读次数:310
PLSQL_自治事务和嵌套的理解和用法(案例)
2014-06-01 BaoXinjian In Capgemini一、摘要嵌套事物:指在一个Parent事务中嵌套的一个或多个Sub Transaction.并且主事务与其相互影响,这种事务就称为嵌套事务。以Commit作为事务的结束自治事物:指在function,procedure等subpro...
分类:数据库   时间:2014-06-02 13:32:36    阅读次数:450
Android应用程序中的多个Activity的显示创建和调用
布局文件: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="...
分类:移动开发   时间:2014-06-01 04:04:04    阅读次数:490
android:修改PagerTabStrip中的背景颜色,标题字体的样式、颜色和图标以及指示条的颜色
1.修改PagerTabStrip中的背景颜色我们在布局中直接设置background属性即可: <android.support.v4.view.ViewPager android:id="@+id/pager" android:layout_width="fill_parent" android:layout_height="fill_paren...
分类:移动开发   时间:2014-05-31 23:42:11    阅读次数:624
CoffeeScript的类继承的工具函数extends
__hasProp = {}.hasOwnProperty, __extends = function(child, parent) { // 派生类时,类方法会生成多个副本。 for (var key in parent) { i...
分类:其他好文   时间:2014-05-26 19:36:25    阅读次数:278
图解Android View的scrollTo(),scrollBy(),getScrollX(), getScrollY()
Android系统手机屏幕的左上角为坐标系,同时y轴方向与笛卡尔坐标系的y轴方向想反。通过提供的api如getLeft , getTop, getBottom, getRight可以获得控件在parent中的相对位置。同时,也可以获得控件在屏幕中的绝对位置,详细用法可参考android应用程序中获取view的位置 当我们编写一些自定义的滑动控件时,会用到一些api如scrollTo(),scro...
分类:移动开发   时间:2014-05-26 04:33:14    阅读次数:331
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!