代码搜索:SWIM
找到约 594 项符合「SWIM」的源代码
代码结果 594
www.eeworm.com/read/123719/14615225
c~ adc_example.c~
/***********************************************************************
* $Workfile: adc_example.c $
* $Revision: 1.1 $
* $Author: WellsK $
* $Date: Oct 28 2003 10:51:54 $
*
*
www.eeworm.com/read/442486/1760133
java swimmer.java
public interface Swimmer{
public abstract void swim();
}
www.eeworm.com/read/313775/3641756
hpp swimcommand.hpp
#ifndef _HFDP_CPP_INTERPRETER_MINI_DUCK_SIMULATOR_SWIM_COMMAND_HPP_
#define _HFDP_CPP_INTERPRETER_MINI_DUCK_SIMULATOR_SWIM_COMMAND_HPP_
#include "MiniDuckSimulator.hpp"
namespace HeadFirstDesig
www.eeworm.com/read/353454/3085464
java swimmer.java
package demo.chapter05.inf;
public interface Swimmer {
void swim();
}
www.eeworm.com/read/232307/14198961
makefile
#
# Makefile for the kernel block device drivers.
#
# 12 June 2000, Christoph Hellwig
# Rewritten to use lists instead of if-statements.
#
# Note : at this point, these files are
www.eeworm.com/read/218117/4864132
java fish.java
package cn.edu.csu.oo.abstractoper.interfaceoper;
public interface Fish extends Run{
void swim();
}
www.eeworm.com/read/370045/2787682
java interfacee.java
package chapter7;
public interface InterfaceE {
}
interface CanWalk {
void walk();
}
interface CanSwim {
void swim();
}
interface CanFly {
void fly();
}
www.eeworm.com/read/383523/8940347
bak catfish.java.bak
import java.util.Vector;
/**
* Catfish - simulates a catfish - can swim, eat, and consume
* energy in the process.
*
*
*/
public class Catfish extends LivingBeing {
/**
* The
www.eeworm.com/read/383523/8940371
java catfish.java
import java.util.Vector;
/**
* Catfish - simulates a catfish - can swim, eat, and consume
* energy in the process.
*
*
*/
public class Catfish extends LivingBeing {
/**
* The
www.eeworm.com/read/175308/9552574
ex-03-05
//Example 03-05: Using enumerations to simplify your code
class Values
{
enum Temperatures
{
WickedCold = 0,
FreezingPoint = 32,
LightJacketWeather = 60,
Swim