代码搜索:composition
找到约 1,051 项符合「composition」的源代码
代码结果 1,051
www.eeworm.com/read/332978/7141885
java placesetting.java
//: reusing/PlaceSetting.java
// Combining composition & inheritance.
import static net.mindview.util.Print.*;
class Plate {
Plate(int i) {
print("Plate constructor");
}
}
class Di
www.eeworm.com/read/326691/13123400
txt 5-1444msg1.txt
Subject:
proceeding from the workshop on compound noun copy of the proceedings from the workshop on " compound noun : multilingual aspect of nominal composition " ( geneva , december 2nd and 3rd , 1
www.eeworm.com/read/325023/13231160
java bath.java
//: reusing/Bath.java
// Constructor initialization with composition.
import static net.mindview.util.Print.*;
class Soap {
private String s;
Soap() {
print("Soap()");
s = "Constr
www.eeworm.com/read/325023/13231198
java placesetting.java
//: reusing/PlaceSetting.java
// Combining composition & inheritance.
import static net.mindview.util.Print.*;
class Plate {
Plate(int i) {
print("Plate constructor");
}
}
class Di
www.eeworm.com/read/131315/5936998
c conf.c
/*
* Copyright (c) 1984, 1985, 1986 Xerox Corp.
*
* configure the system here.
* The following table defines how each composition system that ipmetrics
* can generate for is called.
*
* ADDING
www.eeworm.com/read/125116/6033330
java plane.java
package net.betterjava.design.composition;
public class Plane {
private Fuselage aFuselage;
private Tail aTail;
private Wing leftWing;
private Wing rightWing;
public Plane(
int fus
www.eeworm.com/read/116971/6112147
java instrumentedset.java
// Wrapper class - uses composition in place of inheritance - page 74
import java.util.*;
public class InstrumentedSet implements Set {
private final Set s;
private int addCount = 0;
www.eeworm.com/read/409871/11309645
txt 5-1444msg1.txt
Subject:
proceeding from the workshop on compound noun copy of the proceedings from the workshop on " compound noun : multilingual aspect of nominal composition " ( geneva , december 2nd and 3rd , 1
www.eeworm.com/read/344239/11895580
java bath.java
//: reusing/Bath.java
// Constructor initialization with composition.
import static net.mindview.util.Print.*;
class Soap {
private String s;
Soap() {
print("Soap()");
s = "Constr
www.eeworm.com/read/344239/11895605
java placesetting.java
//: reusing/PlaceSetting.java
// Combining composition & inheritance.
import static net.mindview.util.Print.*;
class Plate {
Plate(int i) {
print("Plate constructor");
}
}
class Di