c语言匿名函数的作用,javascript匿名函数的各种执行形式

'json',

'urlencoded',

'bodyParser',

'compress',

'cookieSession',

'session',

'logger',

'cookieParser',

'favicon',

'responseTime',

'errorHandler',

'timeout',

'methodOverride',

'vhost',

'csrf',

'directory',

'limit',

'multipart',

'staticCache',

].forEach(function (name) {

Object.defineProperty(exports, name, {

get: function () {

throw new Error('Most middleware (like ' + name + ') is no longer bundled with Express and must be installed separately. Please see

https://github.com/senchalabs/connect#middleware.'

);

},

configurable: true

});

});

例2:来自于著名socket.io.js框架(这个长达近4000行的文件中并列定义了类似于下面的十多个匿名函数)。

注意:这个模块文件在加载时相应的匿名函数是要执行的(而不是只定义匿名函数)/**

* There is a way to hide the loading indicator in Firefox. If you create and

* remove a iframe it will stop showing the current loading indicator.

* Unfortunately we can't feature detect that and UA sniffing is evil.

*

* @api private

*/

var indicator = global.document && "MozAppearance" in

global.document.documentElement.style;

/**

* Expose constructor.

*/

exports['jsonp-polling'] = JSONPPolling;

/**

* The JSONP transport creates an persistent connection by dynamically

* inserting a script tag in the page. This script tag will receive the

* information of the Socket.IO server. When new information is received

* it creates a new script tag for the new data stream.

*

* @constructor

* @extends {io.Transport.xhr-polling}

* @api public

*/

function JSONPPolling (socket) {

io.Transport['xhr-polling'].apply(this, arguments);

this.index = io.j.length;

var self = this;

io.j.push(function (msg) {

self._(msg);

});

};

/**

* Inherits from XHR polling transport.

*/

io.util.inherit(JSONPPolling, io.Transport['xhr-polling']);

/**

* Transport name

*

* @api public

*/

JSONPPolling.prototype.name = 'jsonp-polling';

/**

* Posts a encoded message to the Socket.IO server using an iframe.

* The iframe is used because script tags can create POST based requests.

* The iframe is positioned outside of the view so the user does not

* notice it's existence.

*

* @param {String} data A encoded message.

* @api private

*/

JSONPPolling.prototype.post = function (data) {

var self = this

, query = io.util.query(

this.socket.options.query

, 't='+ (+new Date) + '&i=' + this.index

);

if (!this.form) {

var form = document.createElement('form')

, area = document.createElement('textarea')

, id = this.iframeId = 'socketio_iframe_' + this.index

, iframe;

form.className = 'socketio';

form.style.position = 'absolute';

form.style.top = '0px';

form.style.left = '0px';

form.style.display = 'none';

form.target = id;

form.method = 'POST';

form.setAttribute('accept-charset', 'utf-8');

area.name = 'd';

form.appendChild(area);

document.body.appendChild(form);

this.form = form;

this.area = area;

}

this.form.action = this.prepareUrl() + query;

function complete () {

initIframe();

self.socket.setBuffer(false);

};

function initIframe () {

if (self.iframe) {

self.form.removeChild(self.iframe);

}

try {

// ie6 dynamic iframes with target="" support (thanks Chris Lambacher)

iframe = document.createElement('');

} catch (e) {

iframe = document.createElement('iframe');

iframe.name = self.iframeId;

}

iframe.id = self.iframeId;

self.form.appendChild(iframe);

self.iframe = iframe;

};

initIframe();

// we temporarily stringify until we figure out how to prevent

// browsers from turning `\n` into `\r\n` in form inputs

this.area.value = io.JSON.stringify(data);

try {

this.form.submit();

} catch(e) {}

if (this.iframe.attachEvent) {

iframe.onreadystatechange = function () {

if (self.iframe.readyState == 'complete') {

complete();

}

};

} else {

this.iframe.onload = complete;

}

this.socket.setBuffer(true);

};

/**

* Creates a new JSONP poll that can be used to listen

* for messages from the Socket.IO server.

*

* @api private

*/

JSONPPolling.prototype.get = function () {

var self = this

, script = document.createElement('script')

, query = io.util.query(

this.socket.options.query

, 't='+ (+new Date) + '&i=' + this.index

);

if (this.script) {

this.script.parentNode.removeChild(this.script);

this.script = null;

}

script.async = true;

script.src = this.prepareUrl() + query;

script.onerror = function () {

self.onClose();

};

var insertAt = document.getElementsByTagName('script')[0]

insertAt.parentNode.insertBefore(script, insertAt);

this.script = script;

if (indicator) {

setTimeout(function () {

var iframe = document.createElement('iframe');

document.body.appendChild(iframe);

document.body.removeChild(iframe);

}, 100);

}

};

/**

* Callback function for the incoming message stream from the Socket.IO server.

*

* @param {String} data The message

* @api private

*/

JSONPPolling.prototype._ = function (msg) {

this.onData(msg);

if (this.open) {

this.get();

}

return this;

};

/**

* The indicator hack only works after onload

*

* @param {Socket} socket The socket instance that needs a transport

* @param {Function} fn The callback

* @api private

*/

JSONPPolling.prototype.ready = function (socket, fn) {

var self = this;

if (!indicator) return fn.call(this);

io.util.load(function () {

fn.call(self);

});

};

/**

* Checks if browser supports this transport.

*

* @return {Boolean}

* @api public

*/

JSONPPolling.check = function () {

return 'document' in global;

};

/**

* Check if cross domain requests are supported

*

* @returns {Boolean}

* @api public

*/

JSONPPolling.xdomainCheck = function () {

return true;

};

/**

* Add the transport to your public io.transports array.

*

* @api private

*/

io.transports.push('jsonp-polling');

})(

'undefined' != typeof io ? io.Transport : module.exports

, 'undefined' != typeof io ? io : module.parent.exports

, this

);

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
C语言中,没有像其他语言一样支持匿名函数的语法。但是可以通过函数指针和函数指针类型来模拟匿名函数的实现,然后将其作为实参传入。 例如,我们可能有一个函数,该函数需要接受一个函数指针作为参数,并且该函数指针指向一个接受两个整数参数并返回一个整数的函数。我们可以使用typedef来定义一个函数指针类型,然后将该类型作为参数类型传递给函数。 ```c typedef int (*func_ptr)(int, int); int add(int x, int y) { return x + y; } void do_operation(int x, int y, func_ptr operation) { int result = operation(x, y); printf("The result is: %d\n", result); } int main() { // pass a named function as argument do_operation(10, 20, add); // pass an anonymous function as argument do_operation(20, 30, (func_ptr) (int[]){20, 30} ) { return args[0] * args[1]; }); return 0; } ``` 在上面的代码中,我们首先定义了一个函数指针类型`func_ptr`,该类型指向一个接受两个整数参数并返回一个整数的函数。然后,我们定义了一个`add`函数,该函数接受两个整数参数并返回它们的和。 接下来,我们定义了一个`do_operation`函数,该函数接受三个参数:两个整数和一个函数指针。该函数指针指向一个接受两个整数参数并返回一个整数的函数。 最后,在`main`函数中,我们首先将一个命名函数`add`作为参数传递给`do_operation`函数,然后我们将一个匿名函数作为参数传递给该函数。注意,我们在传递匿名函数时使用了一个类型转换,将匿名函数转换为函数指针类型`func_ptr`。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值