代码搜索:Subclass
找到约 2,526 项符合「Subclass」的源代码
代码结果 2,526
www.eeworm.com/read/387950/7217778
makefile
NAME = SubClass
OBJS = $(NAME).obj
RES = $(NAME).res
LINK_FLAG = /subsystem:windows
ML_FLAG = /c /coff
$(NAME).exe: $(OBJS) $(RES)
Link $(LINK_FLAG) $(OBJS) $(RES)
.asm.obj:
ml $(ML_F
www.eeworm.com/read/459924/7262702
old entries.old
/Makefile/1.4/Sat Mar 18 16:51:17 2006//
/__init__.py/1.2/Sat Mar 18 16:51:17 2006//
/fann_cpp_subclass.h/1.5/Thu May 31 19:04:47 2007//
/makefile.msvc/1.1/Sun May 1 07:26:29 2005//
/pyfann.i/1.7
www.eeworm.com/read/459375/7276639
makefile
NAME = SubClass
OBJS = $(NAME).obj
RES = $(NAME).res
LINK_FLAG = /subsystem:windows
ML_FLAG = /c /coff
$(NAME).exe: $(OBJS) $(RES)
Link $(LINK_FLAG) $(OBJS) $(RES)
.asm.obj:
ml $(ML_F
www.eeworm.com/read/145545/12715186
java alteredbinding.java
package examples.inheritance;
/** A class used to demonstrate how dynamic
* binding can be altered by using the
* super reference.
*/
public class AlteredBinding {
/** Test m
www.eeworm.com/read/144914/12762719
makefile
NAME = SubClass
OBJS = $(NAME).obj
RES = $(NAME).res
LINK_FLAG = /subsystem:windows
ML_FLAG = /c /coff
$(NAME).exe: $(OBJS) $(RES)
Link $(LINK_FLAG) $(OBJS) $(RES)
.asm.obj:
ml $(ML_F
www.eeworm.com/read/332264/12766369
java 5.5extendsexam.java
public class ExtendsExam //定义测试类
{
public static void main(String[]args)
{
subclass e = new subclass();
System.out.println("Sup_getX()方法结果: "+e.Sup_getX()); //继承的方法
System.out.println("Sub
www.eeworm.com/read/332264/12766375
java 5.1inherite.java
class superclass //定义父类
{
String s = "father";
}
class subclass extends superclass //定义子类
{
String s = "son";
}
public class Inherite //定义测试类
{
public static void main(String ar
www.eeworm.com/read/101082/6252196
c msivar.c
#ifndef lint
static char *sccsid = "@(#)msivar.c 4.1 (ULTRIX) 7/2/90";
#endif lint
/************************************************************************
*
www.eeworm.com/read/254101/12161638
makefile
NAME = SubClass
OBJS = $(NAME).obj
RES = $(NAME).res
LINK_FLAG = /subsystem:windows
ML_FLAG = /c /coff
$(NAME).exe: $(OBJS) $(RES)
Link $(LINK_FLAG) $(OBJS) $(RES)
.asm.obj:
ml $(ML_F
www.eeworm.com/read/234039/14124413
java constructtest1.java
class SubClass extends BaseClass
{
}
class BaseClass
{
String str;
public BaseClass(){System.out.print("source_codeppppppp");}
public BaseClass(String s){ str=s;}
}
public class ConstructTest