2011年(455)
分类: LINUX
2011-05-16 13:25:22
先来个简单的: | |||
| |||
3楼 那是不是所有函数都用INLINE来实现更好? | |||
| |||
4楼 min函数如此简单,max函数呢?当然跟它一样简单,只不过return 那里要改一下顺序。 | |
| |
5楼 这里C语言就没有C 方便了。C 可以实现运算符重载,或者用模板,方便地用一个函数进行不同类型数据的比较。不过它的内部,仍然是这样一种实现方法。C语言让你直接了解事情的本质。 | |
|
6楼 下面让我们看一个inline函数的例子,很简单的: | |
| |
7楼 再来个复杂点的: | |
|
function sendPV(){
var pvTrack = new PvTrack();
pvTrack.type = 35; // 频道类别ID
pvTrack.channel = 189; // 频道ID
pvTrack.pageType = 0;
pvTrack.track();
}
window.setTimeout("sendPV()", 0);
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-20237423-2']);
_gaq.push(['_setDomainName', '.chinaunix.net']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? '' : '') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://");
document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3F0ee5e8cdc4d43389b3d1bfd76e83216b' type='text/javascript'%3E%3C/script%3E"));
|