码迷,mamicode.com
首页 >  
搜索关键字:data object    ( 98330个结果
基于Qt的信号分析简单应用软件的设计
一、需求描述: 1、读取data.asc文件,分析其连续性; 2、绘制信号图像,并保存。二、UI界面组成: 该应用的UI由以下几个控件组成: 3个PushButton:打开文件、图像保存、退出; 1个Combox:下拉框用于信号的选择; 1个Widget:用于确定绘图区域的坐标,并在Wi...
分类:其他好文   时间:2014-05-04 11:28:56    阅读次数:497
xmpp登录(2)
XMPP中常用对象们:XMPPStream:xmpp基础服务类XMPPRoster:好友列表类XMPPRosterCoreDataStorage:好友列表(用户账号)在core data中的操作类XMPPvCardCoreDataStorage:好友名片(昵称,签名,性别,年龄等信息)在core d...
分类:其他好文   时间:2014-05-04 11:14:22    阅读次数:231
二叉树基本操作——收录
1 #include 2 #include 3 #include 4 typedefchar ElemType; //定义树的结点类型 5 typedefstruct BiTNode 6 { 7 ElemType data; ...
分类:其他好文   时间:2014-05-04 10:51:57    阅读次数:299
JAVA序列化基础知识
1、序列化是干什么的? 简单说就是为了保存在内存中的各种对象的状态(也就是实例变量,不是方法),并且可以把保存的对象状态再读出来。虽然你可以用你自己的各种各样的方法来保 存object states,但是Java给你提供一种应该比你自己好的保存对象状态的机制,那就是序列化。 2、什么情况下需要序列化...
分类:编程语言   时间:2014-05-04 09:57:38    阅读次数:413
给对象添加方法和属性
为了减少所写JS代码对全局环境的污染, 可以采用对象写法来实现命名空间技术,以使得局部变量和函数都在对象中作为属性存在,它们组成某个主题(对象名称体现)的相关属性和方法的集合。如下例:var MyLib = {}; // global Object cointainerMyLib.value =.....
分类:其他好文   时间:2014-05-04 09:57:12    阅读次数:295
[codility]MaxProductOfThree
最近在学scala语言,scala代码如下: import scala.collection.JavaConversions._ import scala.util.control.Breaks._ object Solution { def solution(A: Array[Int]): Int = { // write your code in Scala 2.10...
分类:其他好文   时间:2014-05-04 09:42:56    阅读次数:372
wpf 9张图片的连连看
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; us...
分类:其他好文   时间:2014-05-04 09:30:21    阅读次数:360
[codility]Distinct
最近在学scala语言,scala代码如下: import scala.collection.JavaConversions._ object Solution { def solution(A: Array[Int]): Int = { // write your code in Scala 2.10 // using quick sort to so...
分类:其他好文   时间:2014-05-04 09:22:37    阅读次数:341
android MediaPlayer
Playback control of audio/video files and streams is managed as a state machine. The following diagram shows the life cycle and the states of a MediaPlayer object driven by the supported playback cont...
分类:移动开发   时间:2014-05-03 21:36:21    阅读次数:568
[连载]JavaScript讲义(03)--- JavaScript面向对象编程
介绍了JavaScript中创建对象的5种方式以及实现继承的5种方式,探讨了动态语言类型判定的鸭子判定法,讨论了JavaScript中的Object以及全局对象...
分类:编程语言   时间:2014-05-03 21:27:28    阅读次数:349
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!