代码搜索:methods
找到约 10,000 项符合「methods」的源代码
代码结果 10,000
www.eeworm.com/read/198970/7899746
m demo_kde_3.m
% Simple Example #3 -- products of gaussian mixtures
%
%
fprintf('KDE Example #3 : Product sampling methods (single, anecdotal run)\n');
rand('state',0);
randn('state',0);
p = kde([.1,.45,.55,
www.eeworm.com/read/198531/7931137
copying
OpenVPN -- A Secure Tunneling Daemon
Copyright (C) 2002 by James Yonan
Distribution methods:
Source code is distributed under GPL license.
See COPYRIGHT.GPL file.
In ad
www.eeworm.com/read/333254/12692869
cpp mytime0.cpp
// mytime0.cpp -- implementing Time methods
#include
#include "mytime0.h"
Time::Time()
{
hours = minutes = 0;
}
Time::Time(int h, int m )
{
hours = h;
minutes = m
www.eeworm.com/read/333254/12692895
cpp mytime2.cpp
// mytime2.cpp -- implementing Time methods
#include
#include "mytime2.h"
Time::Time()
{
hours = minutes = 0;
}
Time::Time(int h, int m )
{
hours = h;
minutes = m
www.eeworm.com/read/333254/12692898
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/333003/12711528
java functional42.java
// generics/Functional42.java
// TIJ4 Chapter Generics, Exercise 42, page 743
/*
* Create two separate classes, with nothing in common. Each class should
* hold a value, and at least have methods
www.eeworm.com/read/333003/12712446
java rodent1.java
// interfaces/rodent/Rodent1.java
// TIJ4 Chapter Interfaces, Exercise 1, page 315
/* Modify Exercise 9 in the previous chapter so that Rodent is an abstract class.
* Make the methods of Rodent abs