代码搜索:methods
找到约 10,000 项符合「methods」的源代码
代码结果 10,000
www.eeworm.com/read/337096/12391639
cpp mytime1.cpp
// mytime1.cpp -- implementing Time methods
#include
#include "mytime1.h"
Time::Time()
{
hours = minutes = 0;
}
Time::Time(int h, int m )
{
hours = h;
minutes = m
www.eeworm.com/read/130221/14203040
java extensionclient.java
import org.apache.xmlbeans.*;
import com.localInfo.*;
import com.weather.*;
import java.io.File;
// Illustrates XMLBeans client application calling extended methods added to XMLBeans using Exten
www.eeworm.com/read/126922/14395180
html appc.html
Writing Advanced Applications, Appendix C: Security Manager Methods
www.eeworm.com/read/126922/14395565
html appb.html
Writing Advanced Applications, Appendix B: Classes, Methods, & Permissions
www.eeworm.com/read/125782/14463685
sh mkparametrized.sh
#!/bin/sh
# $Id: MKparametrized.sh,v 1.5 2000/10/01 00:57:24 tom Exp $
#
# MKparametrized.sh -- generate indirection vectors for various sort methods
#
# The output of this script is C source for an a
www.eeworm.com/read/226299/14481960
java cookieutilities.java
package coreservlets;
import javax.servlet.*;
import javax.servlet.http.*;
/** Two static methods for use in cookie handling.
*
* Taken from Core Servlets and JavaServer Pages 2nd Edition
*
www.eeworm.com/read/226299/14482293
java cookieutilities.java
package coreservlets;
import javax.servlet.*;
import javax.servlet.http.*;
/** Two static methods for use in cookie handling.
*
* Taken from Core Servlets and JavaServer Pages 2nd Edition
*
www.eeworm.com/read/122800/14667872
news
* New since libbow version 0.9
New classification methods have been added: maxent, svm, active,
nbshrinkage.
New libbow front-ends have been released: crossbow (document
clustering), archer (Alta
www.eeworm.com/read/220736/14790395
cs serialport.cs
namespace SerialPorts
{
using System;
public class SerialPort : SerialComm//声明SerialPort是SerialComm的一个继承
{
// Methods 方法
///
/// 构造函数,形参为类WithEvents的实例
//
www.eeworm.com/read/120207/14809841
c dpbtest.c
/*
DPBTEST.C -- uses undocumented INT 21h Function 32h (Get DPB)
to display bytes per drive; but first walks the DPB chain,
showing the difference between the two access methods
*/
#in