首页 > 其他
Event Listener's Adapter Classes
摘自: http://www.ntu.edu.sg/home/ehchua/programming/java/J4a_GUI.html Refer to the WindowEventDemo, a WindowEvent listener is required to implement the
分类:其他   时间:2016-02-20 17:33:16    收藏:0  评论:0  赞:0  阅读:259
[opencv] cvCopy高级用法
cvCopy(srcimage,dstimage,maskimage);//srcimage,dstimage,maskimage:pIplImage //srcimage,dstimage,maskimage必须为相同大小的图片,如果maskimage只有某一部分区域的灰度值为255,则 此函数的
分类:其他   时间:2016-02-20 17:33:05    收藏:0  评论:0  赞:0  阅读:460
相机知识问答
转自:http://blog.csdn.net/fulinwsuafcie/article/details/9771943 、 1、持续对焦和触摸对焦的工作原理; 答:首先要了解一下对焦的工作原理。 AF工作原理: 就是通过微距移动镜头,sensor采集图像并传送给ISP处理,ISP把当前frame
分类:其他   时间:2016-02-20 17:31:34    收藏:0  评论:0  赞:0  阅读:320
error: expected constructor, destructor, or type conversion before '.' token
今天写代码是遇到这样一个问题error: expected constructor, destructor, or type conversion before '.' token;立马网上查,原来是说不能再全局域进行不能用于赋值、运算、调用函数等,只能做变量的声明和初始化变量。 下面是我出错的代码
分类:其他   时间:2016-02-20 17:31:14    收藏:0  评论:0  赞:0  阅读:273
strruts2在pom.xml中的配置
1 <dependencies> 2 <dependency> 3 <groupId>org.apache.struts</groupId> 4 <artifactId>struts2-core</artifactId> 5 <version>2.3.1.2</version> 6 </depend
分类:其他   时间:2016-02-20 17:30:54    收藏:0  评论:0  赞:0  阅读:209
数学等式之美!
今天看到了一个有趣的等式如下: 1 x 8 + 1 = 912 x 8 + 2 = 98123 x 8 + 3 = 9871234 x 8 + 4 = 987612345 x 8 + 5 = 987 65123456 x 8 + 6 = 9876541234567 x 8 + 7 = 9876543
分类:其他   时间:2016-02-20 17:30:34    收藏:0  评论:0  赞:0  阅读:135
UITableView
知识点: 1)UITableView 2)UITableViewCell ====================================================== 一、UITableView 1、UITableView介绍 UITableView为列表视图,继承UIScrollV
分类:其他   时间:2016-02-20 17:30:14    收藏:0  评论:0  赞:0  阅读:192
UIScrollView创建相册
1.设置滚动相册 1.1将存放图片数组传过来,及当前图片的索引 1.2在控制器中创建ScrollView,设置它的contentSize,contentOffset. 1.3通过传过来的图片数组创建UIImageView并将每个UIImageView添加到ScrollView,ScrollView的
分类:其他   时间:2016-02-20 17:29:53    收藏:0  评论:0  赞:0  阅读:139
如何修改光圈,焦距等摄像头相关信息
转自:http://blog.csdn.net/fulinwsuafcie/article/details/18617251 Android 平台上使用照相机拍照时,一般都会将当前的拍照参数写入到照片详细信息当中去: 主要有写如下信息: 那么这些信息是在哪里产生的呢,又是怎么写到照片详细信息中去的呢
分类:其他   时间:2016-02-20 17:29:43    收藏:0  评论:0  赞:0  阅读:260
tkprof
http://blog.csdn.net/pan_tian/article/details/7677338需要调整的语句符合以下几点:(1).CPU占用过多(2).Parse,Execute,Fetch花费太多时间(3).DISK读取太多,query/current(SGA)中数据块读取太少(4).
分类:其他   时间:2016-02-20 17:29:33    收藏:0  评论:0  赞:0  阅读:184
LeetCode Generate Parentheses
Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses.For example, given n = 3, a solution set is:"((
分类:其他   时间:2016-02-20 17:29:13    收藏:0  评论:0  赞:0  阅读:187
hdu 2521 反素数
Problem Description 反素数就是满足对于任意i(0<i<x),都有g(i)<g(x),(g(x)是x的因子个数),则x为一个反素数。现在给你一个整数区间[a,b],请你求出该区间的x使g(x)最大。 Input 第一行输入n,接下来n行测试数据 输入包括a,b, 1<=a<=b<=
分类:其他   时间:2016-02-20 17:28:42    收藏:0  评论:0  赞:0  阅读:195
Seinfeld(栈模拟)
Seinfeld Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 1624 Accepted Submission(s): 792 Proble
分类:其他   时间:2016-02-20 17:28:12    收藏:0  评论:0  赞:0  阅读:283
LeetCode 21. Merge Two Sorted Lists
转载请注明出处: http://www.cnblogs.com/gufeiyang 个人微博:flysea_gu 题意: Merge two sorted linked lists and return it as a new list. The new list should be made by
分类:其他   时间:2016-02-20 17:28:02    收藏:0  评论:0  赞:0  阅读:204
面向对象之继承
以下例进行此文描述 将学生(student)和工人(worker)的共性描述提取出来,单独进行描述,只要让学生和工人与单独描述的这个类有关系,就可以了。 class Person { String name; int age; } class Student extends Person { voi
分类:其他   时间:2016-02-20 17:27:52    收藏:0  评论:0  赞:0  阅读:202
数据迁移
#数据迁移前停止mysql服务 service mysql stop #将目标目录的所属用户组和用户和文件夹权限修改为mysql:mysql 0700 chown –R mysql:mysql /mnt/mysqlhdd chown –R 700 /mnt/mysqlhdd #为了防止意外,把现有数
分类:其他   时间:2016-02-20 17:27:41    收藏:0  评论:0  赞:0  阅读:146
[UML]转:浅谈UML的概念和模型之UML九种图
转自:http://blog.csdn.net/jiuqiyuliang/article/details/8552956 目录: UML的视图 UML的九种图 UML中类间的关系 上文我们介绍了,UML的视图,在每一种视图中都包含一个或多种图。本文我们重点讲解UML每种图的细节问题: 1、用例图(u
分类:其他   时间:2016-02-20 17:27:31    收藏:0  评论:0  赞:0  阅读:191
简单的自定义弹框
作为初学者,很多人都是用的系统自带的弹框,非常的简单,完全不能满足用户的交互,所以这里,我们需要自定义一个弹框,把输入框、图片、按钮等添加到弹框里面。为了避免重复冗余的代码,参考了别人的代码,自己做了一个自定义弹框,可以在项目中使用到。给大家一个思路。 这是代码的接口定义,只需要调用一行代码就可以弹
分类:其他   时间:2016-02-20 17:26:21    收藏:0  评论:0  赞:0  阅读:280
【UER #1】跳蚤OS(Trie)
跳蚤OS 是跳蚤国自主研发的功能强大的操作系统。 跳蚤OS的文件系统与普通的文件系统类似,是个文件夹套文件夹的结构。文件系统根目录称为“//”。我们可以用文件路径来表明文件所在的位置,比如“/flea/uoj/flea/uoj”表示根目录下的fleaflea文件夹下的uojuoj文件。 跳蚤OS的文
分类:其他   时间:2016-02-20 17:26:11    收藏:0  评论:0  赞:0  阅读:284
DRAM Memory Rank知识
DRAM的一些知识点,先记录下来再进行整理 1.何为Memory rank? A memory rank is a set of DRAM chips connected to the same chip select, which are therefore accessed simultaneo
分类:其他   时间:2016-02-20 17:25:50    收藏:0  评论:0  赞:0  阅读:362
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!