代码搜索结果
找到约 21,386 项符合
Switch 的代码
switch.java
package com.javapatterns.command.lightandfan;
public class Switch {
private Command UpCommand, DownCommand;
public Switch( Command Up, Command Down) {
UpCommand =
switch.java
package com.javapatterns.command.lightandfan;
public class Switch
{
private Command upCommand;
private Command downCommand;
public Switch(Command up, Command down)
{
switch.h
/***
* switch.h
*
* Copyright 1985, 1986, 1987 Microsoft Corporation
*
*******************************************************************************/
/*=================================
switch.inc
;***
;switch.inc - see switch.h for real definitions of switches
;
; Copyright 1985, 1986, 1987 Microsoft Corporation
;
;
;******************************************************************
switch.java
package com.javapatterns.command.lightandfan;
public class Switch
{
private Command upCommand;
private Command downCommand;
public Switch(Command up, Command down)
{
switch.h
/* switch.h
* Definitions needed for implementing context switching.
*
* Context switching is inherently machine dependent, since
* the registers to be saved, how to set up an initial
* call fram
switch.c
/* switch.s
* Machine dependent context switch routines. DO NOT MODIFY THESE!
*
* Context switching is inherently machine dependent, since
* the registers to be saved, how to set up an initi
switch.jhd
MODULE switch
switch.vhd
-- 库声明
library IEEE;
use IEEE.STD_LOGIC_1164.all;
-- 实体声明
entity switch is
port (
din1 : in STD_LOGIC;
din2 : in STD_LOGIC;
sel : in STD_LOGIC;
dout : out STD_LO