代码搜索:objects
找到约 10,000 项符合「objects」的源代码
代码结果 10,000
www.eeworm.com/read/137140/13343642
java app8_12.java
// app8_12,对象的比较
class CCircle
{
private static double pi=3.14;
private double radius;
public CCircle(double r){ // CCircle()构造函数
radius=r;
}
public void compare(CC
www.eeworm.com/read/136879/13355889
h employ1.h
// Fig. 7.9: employ1.h
// An employee class
#ifndef EMPLOY1_H
#define EMPLOY1_H
class Employee {
public:
Employee( const char*, const char* ); // constructor
~Employee();
www.eeworm.com/read/323072/13356073
pas dcthrvar.pas
unit dcThrVar;
interface
uses
dcDecomps;
type
{ TThreadVar }
TThreadVar = class(TDecompItem)
private
FVarSize: Integer;
public
function GetDeclaration: string;
www.eeworm.com/read/323072/13356089
pas pefile.pas
// Author: Python (python@softhome.net)
// Version: 0.0.1.2
// LastModified: 3-23-2000
// LatestVersion: http://thunder.prohosting.com/~pytho/
// Copyright (
www.eeworm.com/read/322276/13383792
vbp 工程1.vbp
Type=Exe
Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#C:\WINDOWS\system32\stdole2.tlb#OLE Automation
Reference=*\G{22813728-8BD3-11D0-B4EF-00A0C9138CA4}#2.8#0#C:\Program Files\Common Fi
www.eeworm.com/read/321681/13400932
makefile
#############################################################################
# Makefile for building webcam
# Generated by tmake at 14:27, 2005/08/27
# Project: webcam
# Template: app
########
www.eeworm.com/read/321681/13400972
makefile
#############################################################################
# Makefile for building v4l
# Generated by tmake at 14:35, 2005/08/27
# Project: v4l
# Template: app
##############
www.eeworm.com/read/320605/13422052
java sequence.java
//: c08:Sequence.java
// Holds a sequence of Objects.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
import com.bruceeckel.s
www.eeworm.com/read/320575/13422701
in makefile.in
# General variables, needed because of the configure script
prefix = @prefix@
exec_prefix = @exec_prefix@
# Some variables to easily adapt the version number of the library
LIBRARYNAME = libjrtp
L
www.eeworm.com/read/319883/13440440
cpp box.cpp
// Program 11.2 Using pointers to Box objects. File: box.cpp
// Defines the Box member function
#include "box.h"
// Box function to calculate volume
double Box::volume() {
return length * w