public void playerUpdate(final Player p, final String event, final Object eventData) { // queue a call to updateEvent in the user interface event queue Display display = Display.getDisplay(midlet) display.callSerially(new Runnable() { public void run() { DRMPlayer.this.updateEvent(p, event, eventData) } }) }
资源简介:public void playerUpdate(final Player p, final String event, final Object eventData) { // queue a call to updateEvent in the user interface event queue Display display = Display.getDisplay(midlet) display.callSerially(new Runnable...
上传时间: 2013-12-18
上传用户:1109003457
资源简介:package youxiangtu import java.io.* public class YXTu{ static public void main(String[] args){
上传时间: 2014-01-10
上传用户:zjf3110
资源简介:class NumberListener implements ActionListener{ public void actionPerformed(ActionEvent e){ if (!append) { tf.setText("") append=true } String s=tf.getText() s+=e.getActionCommand() tf.setText(s) if (!btn[10].isEnable...
上传时间: 2013-12-05
上传用户:wys0120
资源简介:if(e.getActionCommand()=="参数法画圆"){ p=11 } } //actionPerformed //实现接口WindowListener的所有方法,用于处理发生在窗口上的事件 public void windowClosing(WindowEvent e)
上传时间: 2016-02-27
上传用户:busterman
资源简介:java的一个源代码,、 public class ThunderBoltAct extends Canvas implements Runnable { private int TIMEOUT = 0 private final static int NUMERIC = 10000 //总分 private final static int INERRGAL = 60 //频率 private final static int M...
上传时间: 2016-04-26
上传用户:jichenxi0730
资源简介:package query public class LinkQuery { private Node front private Node vear public LinkQuery() { this.front=null this.vear=null } public void add(int i) { Node newNode=new Node(i) if(vear==null && front==...
上传时间: 2016-07-08
上传用户:天诚24
资源简介:1. 学生成绩删除功能:该功能通过调用int shanchu(struct Student *p,int x,int num,float a[])来实现。该功能采用的是询问管理人员的意见之后再功能实现,由学号来引出学生信息,当学号不存在时,系统将给出信息“该学生不存在!”。然后询问管理员是否继续...
上传时间: 2013-12-02
上传用户:hebmuljb
资源简介:物料管理 物料登记 批量登记:一次性导入多条物料 单条登记:只能录入一条物料信息 物料管理 更新: 删除: 查看: 物料导出 库管员可以将系统中登记的所有物料一次性导出来 MaterialImport public MaterialImport( MateiralManager manager, Str...
上传时间: 2013-12-03
上传用户:fredguo
资源简介:#include "iostream" using namespace std; class Matrix { private: double** A; //矩阵A double *b; //向量b public: int size; Matrix(int ); ~Matrix(); friend double* Dooli(Matrix& ); void Input(); ...
上传时间: 2018-05-20
上传用户:Aa123456789
资源简介:#include<stdio.h> #include<string.h> #include<stdlib.h> #define N 100 int iNumOfStu=0; struct score { float math; float english; float computer; }; struct student { int numb...
上传时间: 2019-06-08
上传用户:啊的撒旦
资源简介:#include<stdio.h> #include<string.h> #include<stdlib.h> #define N 100 int iNumOfStu=0; struct score { float math; float english; float computer; }; struct student { int numb...
上传时间: 2019-06-09
上传用户:啊的撒旦
资源简介:本附录介绍一些新的A P I函数,有了这些函数,便可在自己的计算机上对I P协议统计情况 进行查询和管理。它们有助于获得下面的能力: ■ I p c o n f i g . e x e(或适用于微软Windows 95的Wi n i p c f g . e x e):显示I P配置信息,允许释放 和更新D H...
上传时间: 2014-01-12
上传用户:569342831
资源简介:This code is a cipher which takes in a plaintext or ciphertext string and encrypts / decrypts according to a user defined key value.
上传时间: 2014-01-05
上传用户:181992417
资源简介:OpenSS7 This the fourth public release of the OpenSS7 Master Package. See README in the release for a sub-package listing. Most of the sub-packages in the release are production grade for Linux Fast-STREAMS. All existing validation test sui...
上传时间: 2015-10-28
上传用户:cc1
资源简介:26.编写一个具有如下样式的类模板tmplt,用于实现所谓的反序输出问题,其中使用了类型参数T(使所处理的元素类型可变化)以及普通参数n(元素个数也可变化): template <class T, int n> class tmplt { T arr[n] // n个T类型的数据存放于数组arr之中 ...
上传时间: 2014-01-07
上传用户:xiaoxiang
资源简介:本程序执行后,创建一个能够加载文字的面板,文字的内容是本地主机的IP地址的动态显示。跑马灯文字的大小和跑马灯文字显示的速度都可以在GatutTextCrawler.html文件里通过参数进行设置。 编程思路:首先,本练习因为要制作侦测IP的跑马灯的实例,所以首先要...
上传时间: 2016-06-06
上传用户:miaochun888
资源简介:为了实现定时事件,我们引入了一个接口implements TimerClient这个接口是别人做好了的,具体代码在包中,它的作用是只要我们设置一下定时产生事件的时间,它就定时调用方法public void timerEvent(int id)因此,我们就在这个方法中每调用一次,在不同的地方画...
上传时间: 2016-11-22
上传用户:wpwpwlxwlx
资源简介:java 线程 静态锁,对象锁, synchronized 是锁方法还是锁对象?还是锁类?如何实现?? 部分代码如下, public static Object lock=new Object() //静态锁,锁类,不是锁对象了!!所以两个线程同时 运行两个 TestThread 的execute( ),也可以同...
上传时间: 2017-07-15
上传用户:lijianyu172
资源简介:两个链表的交集 #include<stdio.h> #include<stdlib.h> typedef struct Node{ int data; struct Node *next; }Node; void initpointer(struct Node *p){ p=NULL; } int printlist(struct Node* head){ int flag=1; head=head->next; ...
上传时间: 2015-04-27
上传用户:coco2017co
资源简介:/** * 用于在逻辑和界面间传输数据的bean * @version 1.0 */ public class DataBean { private int first = -1; private int second = -1; public int getFirst() { return first; } public int getSecon...
上传时间: 2015-11-07
上传用户:dddhhhwww
资源简介:链表习题 1. 编程实现链表的基本操作函数。 (1). void CreatList(LinkList &La,int m) //依次输入m个数据,并依次建立各个元素结点,逐个插入到链表尾;建立带表头结点的单链表La; (2). void ListPrint(LinkList La) //将单链表La的数据元...
上传时间: 2017-11-15
上传用户:BIANJIAXIN
资源简介:1. 编程实现链表的基本操作函数。 (1). void CreatList(LinkList &La,int m) //依次输入m个数据,并依次建立各个元素结点,逐个插入到链表尾;建立带表头结点的单链表La; (2). void ListPrint(LinkList La) //将单链表La的数据元素从表头到表...
上传时间: 2017-11-15
上传用户:BIANJIAXIN
资源简介:modbus-demo, public M_3W_D(50) As Long public M_4W_D(500) As Long public M_0W_B(100) As Long public M_1W_B(100) As Long public PLC_B(50) As Single public PLC_C(50) As Long public T1t(500) As Long public M_3x(500) As Long public M_4x(500)...
上传时间: 2020-11-09
上传用户:
资源简介:大家先试用一下,源码后面奉上!!!using System;using System.Collections.Generic;using System.Configuration;using System.Data;using System.Linq;using System.Threading.Tasks;using System.Windows;namespace SerialCom{ /// <summary> //...
上传时间: 2022-03-25
上传用户:kent
资源简介:宏晶 STC15F2K60S2开发板配套软件源码 基础例程30例/**********************基于STC15F2K60S2系列单片机C语言编程实现使用如下头文件,不用另外再包含"REG51.H"#include <STC15F2K60S2.h>***********************/#include "STC15F2K60S2.H"//#include "REG51...
上传时间: 2022-05-03
上传用户:
资源简介:#include "NUC1xx.h"#include "Hal.h"#include "pwm.h"//wait current PWM cycle done, otherwise there maybe short pulse on FETvoid PWM_Stop(U8 ch){ switch(ch) { case PWM_CHANNEL_A: PWMA->u32CNR1 = 0; PWMA->u32CMR1 = 0; while(PWMA->u32PDR...
上传时间: 2022-06-01
上传用户:kingwide
资源简介:PrefaceDuring the past years, there has been a quickly rising interest in radio access technologies for providingmobile as well as nomadic and fixed services for voice, video, and data. The difference indesign, implementation, and use betwe...
上传时间: 2022-07-08
上传用户:
资源简介: The 14-bit LTC2351-14 is a 1.5Msps, low power SARADC with six simultaneously sampled differential inputchannels. It operates from a single 3V supply and featuressix independent sample-and-hold amplifi ers and a singleADC. The single AD...
上传时间: 2014-12-23
上传用户:天诚24
资源简介:One of the most critical components in a step-up design like Figure 1 is the transformer. Transformers have parasitic components that can cause them to deviate from their ideal characteristics, and the parasitic capacitance associated with ...
上传时间: 2013-11-22
上传用户:15070202241
资源简介:此产品是通过FCC认证的A级电子产品。在国内使用可能会对通讯造成干扰,因此,要求使用者采取适当的防备措施。 此产品经过测试,证明完全符合A级电子设备要求和FCC认证的第15部分规范。这些规范是为了在商业环境下使用该设备免受有害干扰提供有效保护而设置的...
上传时间: 2013-10-29
上传用户:dsgkjgkjg