代码搜索:methods
找到约 10,000 项符合「methods」的源代码
代码结果 10,000
www.eeworm.com/read/470589/6914112
h floorplan.h
/* File: Floorplan.h
* Author: Dan Gibson
* ECE 556 HW 3
* Contents:
* Class Floorplan, representing a circuit
* floorplan, and vital member functions
*
* Last modified:
* Development
www.eeworm.com/read/468329/6996594
cpp workermi.cpp
// workermi.cpp -- working class methods with MI
#include "workermi.h"
#include
using std::cout;
using std::cin;
using std::endl;
// Worker methods
Worker::~Worker() { }
// protec
www.eeworm.com/read/468329/6996599
cpp worker0.cpp
// worker0.cpp -- working class methods
#include "worker0.h"
#include
using std::cout;
using std::cin;
using std::endl;
// Worker methods
// must implement virtual destructor, even
www.eeworm.com/read/468329/6996692
cpp tv.cpp
// tv.cpp -- methods for the Tv class (Remote methods are inline)
#include
#include "tv.h"
bool Tv::volup()
{
if (volume < MaxVal)
{
volume++;
return true;
www.eeworm.com/read/468329/6996735
cpp tabtenn1.cpp
// tabtenn1.cpp -- base-class methods and derived-class methods
#include "tabtenn1.h"
#include
#include
// TableTennisPlayer methods
TableTennisPlayer::TableTennisPlayer (c
www.eeworm.com/read/468035/6998257
java objecttoxml.java
package test.xml;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
public class ObjectToXml {
public static void main(St
www.eeworm.com/read/467296/7009457
h worldmodel.h
/*
Copyright (c) 2000-2003, Jelle Kok, University of Amsterdam
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the fo
www.eeworm.com/read/467296/7009537
h~ worldmodel.h~
/*
Copyright (c) 2000-2003, Jelle Kok, University of Amsterdam
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the fo
www.eeworm.com/read/465523/7049427
h imagecontainerview.h
/*
========================================================================
Name : ImageContainerView.h
Author :
Copyright : Copyright 2006 Nokia Corporation
Description :
===========
www.eeworm.com/read/465716/7052502
py synchronization.py
#: util:Synchronization.py
'''Simple emulation of Java's 'synchronized'
keyword, from Peter Norvig.'''
import threading
def synchronized(method):
def f(*args):
self = args[0]
self.m