代码搜索结果

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

control_interface.v

module control_interface( CLK, RESET_N, CMD, ADDR, REF_ACK, INIT_ACK, CM_ACK, NOP, READA, WRITEA, REFRESH,

interface4.java

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

interface2.java

interface MyInter1{ public void method1(); } interface MyInter2{ public void method2(); } public class Interface2 implements MyInter1, MyInter2{ public void method1(){ System.out.prin

interface1.java

interface MyInter{ public static final int MAX=100; public static final int MIN=1; public void method1(); public void method2(int a); } public class Interface1 implements MyInter{ p

interface5.java

interface MyInter{ private void method1(); protected void method2(); } public class Interface5 implements MyInter{ public void method1(){ System.out.println("method1 override"); }

interface3.java

interface MyInter1{ public void method1(); } interface MyInter2{ public void method2(); } class MyClass{ public void hi(){ System.out.println("救崇"); } } public class Interface3 e

twi_interface.c

/******************************************************************* Analog Devices, Inc. All Rights Reserved. This software is proprietary and confidential. By using this software you agree to

control_interface.v

/****************************************************************************** * * LOGIC CORE: Control Interface - Top level module * MODULE NAME: control_interface() * COM