代码搜索结果

找到约 10,000 项符合 Interface 的代码

rip_interface.c

/* Interface related function for RIP. * Copyright (C) 1997, 98 Kunihiro Ishiguro * * This file is part of GNU Zebra. * * GNU Zebra is free software; you can redistribute it

ripng_interface.c

/* * Interface related function for RIPng. * Copyright (C) 1998 Kunihiro Ishiguro * * This file is part of GNU Zebra. * * GNU Zebra is free software; you can redistribute it and/or modify it *

接口interface.txt

接口<mark>interface</mark>: 1。接口声明: <mark>interface</mark> 接口的名字; 2。接口体: 接口体包括 常量定义 +和 方法定义(只定义方法并不给出方法体属 abstrct方法) 3。一个类通过使用关键字“implements”声明自己实现一个或多个接口; 4。如果一个类实现某个接口,那么这个类必须实现该接口“所有的方法”; 5。接口的方法默认是public ...

vga_interface.vhd

------------------------------------------------------------------ -- Copyright (c) 1995-2005 Xilinx, Inc. -- All Right Reserved. ------------------------------------------------------------------ --

aodv-interface.cc

/* * Copyright (c) 2008, Karlstad University * Erik Andersson, Emil Ljungdahl * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are pe

aodv-interface.h

/* * Copyright (c) 2008, Karlstad University * Erik Andersson, Emil Ljungdahl * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are pe

interface4.java

interface MyInter1{ public void method1(); } interface MyInter2 extends MyInter1{ public void method2(); } public class Interface4 implements MyInter2{ public void method1(){ System.o