代码搜索:Subclass
找到约 2,526 项符合「Subclass」的源代码
代码结果 2,526
www.eeworm.com/read/114100/15110832
txt 能否不用其他控件实现3d效果.txt
如 果 你 不 使 用 控 件 , 你 必 须 截 取 WM_DRAWITEM(对 于 一 般 控 件 )或 WM_NCPAINT(对 于 Form的 Caption), 这 就 意 味 着 你 必 须 使 用 Subclass技 术 。 对 于 VB而 言 很 麻 烦 的 。
www.eeworm.com/read/114100/15112388
txt 能否不用其他控件实现3d效果.txt
如 果 你 不 使 用 控 件 , 你 必 须 截 取 WM_DRAWITEM(对 于 一 般 控 件 )或 WM_NCPAINT(对 于 Form的 Caption), 这 就 意 味 着 你 必 须 使 用 Subclass技 术 。 对 于 VB而 言 很 麻 烦 的 。
www.eeworm.com/read/209275/15223968
h hellowdm.h
// HelloWdm.h - include file for basic WDM driver
//=============================================================================
//
// Compuware Corporation
// NuMega Lab
// 9 Townsend West
//
www.eeworm.com/read/205788/15306979
java classexchangedemo.java
class SuperClass{
int a=5,b=8,c=85;
void show(){
System.out.println("a*b="+(a*b));
}
}
class SubClass extends SuperClass{
int b=26,d=32;
void show() {
System.out.println("b+d="+(b+d));
www.eeworm.com/read/171479/5395058
groovy groovy996_bug.groovy
package groovy.bugs
class Groovy996_Bug extends GroovyTestCase {
void testAccessToSuperProtectedField() {
def a = new Groovy996_SubClass()
a.out()
}
}
class Groovy996_SuperCl
www.eeworm.com/read/165904/5476688
java drei.java
package tutorial.dev.inheritance;
/**
* @hibernate.subclass
*
*/
public class Drei extends Zwei {
}
www.eeworm.com/read/164604/5488999
java hottersingleton.java
package headfirst.singleton.subclass;
public class HotterSingleton extends Singleton {
// useful instance variables here
private HotterSingleton() {
super();
}
// useful methods here
}
www.eeworm.com/read/163959/5504364
java cacheentry.java
//$Id: CacheEntry.java,v 1.4 2005/03/16 04:45:19 oneovthafew Exp $
package org.hibernate.cache.entry;
import java.io.Serializable;
import org.hibernate.AssertionFailure;
import org.hibernate.Hiberna
www.eeworm.com/read/163959/5504367
java structuredcacheentry.java
//$Id: StructuredCacheEntry.java,v 1.1 2005/02/13 12:46:58 oneovthafew Exp $
package org.hibernate.cache.entry;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
import or
www.eeworm.com/read/163959/5504903
java persistentclassvisitortest.java
/*
* Created on 06-Dec-2004
*
*/
package org.hibernate.test.mapping;
import junit.framework.TestCase;
import org.hibernate.mapping.JoinedSubclass;
import org.hibernate.mapping.PersistentClassVisi