代码搜索:Initialization
找到约 10,000 项符合「Initialization」的源代码
代码结果 10,000
www.eeworm.com/read/344327/11888486
cpp bptrain.cpp
// BPTrain.cpp : Defines the class behaviors for the application.
//
#include "stdafx.h"
#include "globalvar.h"
#include "BPTrain.h"
#include "BPTrainDlg.h"
#ifdef _DEBUG
#define new DEBUG_NE
www.eeworm.com/read/344310/11888743
cpp appmms.cpp
// AppMMS.cpp : Defines the class behaviors for the application.
//
#include "stdafx.h"
#include "AppMMS.h"
#include "AppMMSDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
stat
www.eeworm.com/read/258049/11891577
cpp txt文件分割器gui版.cpp
// TXT文件分割器GUI版.cpp : Defines the class behaviors for the application.
//
#include "stdafx.h"
#include "TXT文件分割器GUI版.h"
#include "TXT文件分割器GUI版Dlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#und
www.eeworm.com/read/344239/11894090
java multiplereturns.java
//: exceptions/MultipleReturns.java
import static net.mindview.util.Print.*;
public class MultipleReturns {
public static void f(int i) {
print("Initialization that requires cleanup");
www.eeworm.com/read/155139/11895751
cpp 7.cpp
// 7.cpp : Defines the class behaviors for the application.
//
#include "stdafx.h"
#include "7.h"
#include "7Dlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FI
www.eeworm.com/read/344239/11897174
java leaf.java
//: initialization/Leaf.java
// Simple use of the "this" keyword.
public class Leaf {
int i = 0;
Leaf increment() {
i++;
return this;
}
void print() {
System.out.println
www.eeworm.com/read/344239/11897179
java spiciness.java
//: initialization/Spiciness.java
public enum Spiciness {
NOT, MILD, MEDIUM, HOT, FLAMING
} ///:~
www.eeworm.com/read/344238/11897796
java primitivetest.java
// TIJ4 Chapter Object, Exericise 1, page 89
// object/PrimitiveTest.java
// Create a class containing an int and a char that are not intitialized
// and print their values to verify that Java perf
www.eeworm.com/read/344238/11898002
java inittest18.java
// initialization/InitTest18.java
// TIJ4 Chapter Initialization, Exercise 18, page 198
/* Attach objects to the references in array in exercise 17: Create a class with
* a constructor that takes a
www.eeworm.com/read/344238/11898037
java automaticconstructor.java
// initialization/AutomaticConstructor.java
// TIJ4 Chapter Initialization, Exercise 7, page 167
/* Create a class without a constructor, and then create an object of that
* class in main() to veri