码迷,mamicode.com
首页 >  
搜索关键字:public void __cdecl    ( 122950个结果
Android sqlite cursor的遍历
查询并获得了cursor对象后,用while(corsor.moveToNext()){}遍历,当corsor.moveToNext()方法调用,如果发现没有对象,会返回false public List getAll() { List list = new ArrayList(...
分类:移动开发   时间:2014-04-28 10:07:40    阅读次数:1390
以JPanel为基础实现一个图相框
代码:import java.awt.Graphics;import javax.swing.ImageIcon;import javax.swing.JPanel;public class Picture extends JPanel { private static final long ...
分类:其他好文   时间:2014-04-28 09:55:53    阅读次数:903
Android 监听ListView、GridView滑动到底部
// 监听listview滚到最底部mIndexList.setOnScrollListener(new OnScrollListener() { @Override public void onScrollStateChanged(AbsListView view, int scrol...
分类:移动开发   时间:2014-04-28 09:38:05    阅读次数:2001
继承派生产生的切割问题
1 #include 2 #include 3 using namespace std; 4 class people 5 { 6 public: 7 string name; 8 int age; 9 virtual void print();10 };11 12...
分类:其他好文   时间:2014-04-28 09:04:54    阅读次数:690
如何解决IOS 动画中 Autolayout 与View Transforms的冲突
IOS 的动画放大与缩小,并非按照找它的中心点放大和缩小,而是左上角 。我分析了下原来是Autolayout 与View Transforms的冲突造成的。- (void) addSubviewWithZoomInAnimation:(UIView*)view duration:(float)sec...
分类:移动开发   时间:2014-04-27 21:10:53    阅读次数:1047
OpenCV脸部、眼睛检测
/* 功能:实现对眼睛、脸部的跟踪。 版本:1.0 时间:2014-4-27 */ #include #include #include #include #include #include using namespace std; using namespace cv; void detectEyeAndFace( Mat frame ); //将下面两个文件复制到当前工...
分类:其他好文   时间:2014-04-27 20:40:47    阅读次数:659
cocos2d-x3.0 常用画图方法
HelloWorldScene.h 添加如下代码: protected: void onDraw(const kmMat4 &transform, bool transformUpdated); CustomCommand _customCommand; HelloWorldScene.cpp void HelloWorld::draw(cocos2d::Rende...
分类:其他好文   时间:2014-04-27 20:38:07    阅读次数:679
GlusterFS源码解析 —— GlusterFS日志解析
Logging.c: /* Copyright (c) 2008-2012 Red Hat, Inc. This file is part of GlusterFS. This file is licensed to you under your choice of the GNU Lesser General Public License, version 3 or any...
分类:其他好文   时间:2014-04-27 18:57:31    阅读次数:702
万能的函数 之 接口继承 实现继承~~~
在public继承中,(public 继承表示的关系是 “is  a ” 的关系),其类中定义的函数主要有三类:pure virtual函数,impure virtual函数以及non-virtual函数,这三种函数决定了public继承中的两个重要概念 : “ 函数接口继承” 以及 “函数实现继承”。那么接下来将针对这样一个不简单的问题做一些简介。 考虑如下的类定义: class Shape...
分类:其他好文   时间:2014-04-27 18:29:13    阅读次数:526
java合并两段音频成一段 同时播放类似伴奏
/** * * @param partsPaths 要合成的音频路径数组 * @param unitedFilePath 输入合并结果数组 */ public void uniteWavFile(String[] partsPaths, String unitedFilePath) { byte byte1[] = getByte(partsPaths[0]); ...
分类:编程语言   时间:2014-04-27 17:39:03    阅读次数:556
122950条   上一页 1 ... 12293 12294 12295
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!