代码搜索结果
找到约 143,016 项符合
Remote Control 的代码
control.h
#ifndef Control_H
#define Control_H
//------------------ C API for Control routine ---------------------
typedef struct {
short qVelRef; // Reference velocity
short qVdRef;
control.m
function y=control(n)
a=20;
if n==0
y=a+1;
elseif n==1
y=a*(1+n);
elseif n==2
y=a+n;
else
y=a;
end
control.h
#ifndef Control_H
#define Control_H
//------------------ C API for Control routine ---------------------
typedef struct {
short qVelRef; // Reference velocity
short qVdRef;
control.p
{-----------------------------------------------------------------------
File : control.p
Contents: hamster control program
Author : Christian Borgelt
History : 24.03.1999 file created fro
control.pas
{-----------------------------------------------------------------------
File : control.pas (Turbo-/Borland-Pascal version)
Contents: hamster control program
Author : Christian Borgelt
control.e
------------------------------------------------------------------------
-- File : control.e
-- Contents: customized hamster control class
-- Authors : Ilona Bl"umel and Christian Borgelt
-- Histor
control.c
/*----------------------------------------------------------------------
File : control.c
Contents: hamster control program
Author : Christian Borgelt
History : 16.10.1997 file created
---
control.ascx
sub Page_Load(obj as object, e as eventargs)
lblMessage.Text = "Control last vie
control.rpt
Project Information f:\jlh\cotrol\control.rpt
MAX+plus II Compiler Report File
Version 10.0 9/14/2000
Compiled: 01/22/2005 22:19:12
Copyright (C) 1988-2000 Alt
e189. looking up a remote object and invoking a methoda.txt
try {
// Look up remote object
RObject robj = (RObject) Naming.lookup("//localhost/RObjectServer");
// Invoke method on remote object
robj.aMethod();
} c