代码搜索:methods
找到约 10,000 项符合「methods」的源代码
代码结果 10,000
www.eeworm.com/read/118155/14885255
py shapefactory2.py
#: c05:shapefact2:ShapeFactory2.py
# Polymorphic factory methods.
from __future__ import generators
import random
class ShapeFactory:
factories = {}
def addFactory(id, shapeFactory):
www.eeworm.com/read/212063/15166366
h sortable.h
template
class Sortable_list:public List {
public: // Add prototypes for sorting methods here.
void insertion_sort();
void merge_sort();
private:
Node
www.eeworm.com/read/212063/15166410
h list.h
const int max_list = 5000;
template
class List {
public:
// methods of the List ADT
List();
int size() const;
bool full() const;
bool empty() const;
v
www.eeworm.com/read/210338/15201394
txt license.txt
License
The source code (except the files or methods mentioned below) of the look and feel is released under the LGPL (GNU Lesser General Public License),
which you can view on http://www.gnu.org/co
www.eeworm.com/read/490333/1200563
cs staticcharmethods.cs
// Fig. 15.16: CharMethods.cs
// Demonstrates Shared character testing methods
// from Char structure
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel
www.eeworm.com/read/490332/1200807
java servletutilities.java
package coreservlets;
import javax.servlet.*;
import javax.servlet.http.*;
/** Some simple time savers. Note that most are static methods.
*
* Taken from Core Servlets and JavaServer Pages
www.eeworm.com/read/475745/1382533
java abstractdemo.java
// 一个简单的抽象类
abstract class A {
abstract void callme();
// concrete methods are still allowed in abstract classes
void callmetoo() {
System.out.println("This is a concrete method.");