代码搜索:methods
找到约 10,000 项符合「methods」的源代码
代码结果 10,000
www.eeworm.com/read/417019/11006936
js 10.02 - facades as convenience methods.js
function a(x) {
// do stuff here...
}
function b(y) {
// do stuff here...
}
function ab(x, y) {
a(x);
b(y);
}
var DED = window.DED || {};
DED.util = {
stopPropagation: function(e) {
i
www.eeworm.com/read/417019/11007010
js 3.03 - private methods with underscores.js
var Book = function(isbn, title, author) { // implements Publication
this.setIsbn(isbn);
this.setTitle(title);
this.setAuthor(author);
}
Book.prototype = {
_checkIsbn: function(isbn) {
..
www.eeworm.com/read/417019/11007017
js 3.05 - private methods with closures.js
var Book = function(newIsbn, newTitle, newAuthor) { // implements Publication
// Private attributes.
var isbn, title, author;
// Private method.
function checkIsbn(isbn) {
...
}
www.eeworm.com/read/417019/11007020
js 5.05 - private methods with closures.js
/* Singleton as an Object Literal. */
MyNamespace.Singleton = {};
/* Singleton with Private Members, step 1. */
MyNamespace.Singleton = (function() {
return {};
})();
/* Singleton with Private M
www.eeworm.com/read/417019/11007041
js 5.04 - private methods with underscores.js
/* DataParser singleton, converts character delimited strings into arrays. */
GiantCorp.DataParser = {
// Private methods.
_stripWhitespace: function(str) {
return str.replace(/\s+/, '');
www.eeworm.com/read/469275/6979890
pdf numerical methods in engineering with matlab.pdf
www.eeworm.com/read/468843/6980404
pdf a_historical_survey_of_algebraic_methods.pdf
www.eeworm.com/read/451530/7462585