我自己sujay。我是android编程的新手。我编写了一个程序来转换我们在Textile领域使用的值。有些值是直接成比例的,有些是间接成比例的。我给出了下面写的代码可以帮助我减少程序中使用其他一些JAVA代码的行数
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-xxxxx-x']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = 'https://ssl.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
$('.gotodiv').click(function(){
var url = $(this).find('a').attr('href');
ga('send', 'event', 'button', 'click', url);
});
答案 0 :(得分:0)
这会略微减少行数:
double result = 0.0;
if (index1 == 0)//Ne to Ne
{
if(index2 == 0)
result = value*1;
if (index2 == 1)
result = value * 1.69;
if (index2 == 2)
result = 591/value;
if(index2 == 3)
result = 0.591/value;
if (index2 == 4 || index2 == 5 || index2 == 6 || index2 == 7)
result = 5314/value;
}
to.setText(result+"");
希望有所帮助