我做了一些研究,但我主要看到c ++的答案.我最接近的就是这个.我也看过这个页面,但它并没有真正解释任何事情.
如果我使用第二段代码有什么好处吗?会有明显的性能差异吗?记忆呢?如果重复完成怎么办?
现在我有这个功能.我确信这样做的好处是代码可读性:
private static Bitmap resize(Bitmap image, int maxWidth) { float widthReducePercentage = ((float) maxWidth / image.getWidth()); int scaledHeight = Math.round(image.getHeight() * widthReducePercentage); return Bitmap.createScaledBitmap(image, maxWidth, scaledHeight, true); }
现在,我有第二段代码:
private static Bitmap resize(Bitmap image, int maxWidth) { return Bitmap.createScaledBitmap(image, maxWidth, Math.round(image.getHeight() * (float) maxWidth / image.getWidth()), true); }
一个更简单的例子是:
for(;;) { String foo = "hello"; Console.print(foo + "world"); }
与
for(;;) { Console.print("hello" + "world"); }
Mike Barancz.. 9
第一:这不是"内联"的意思.请参阅:什么是内联?
第二:不,表现不会有任何可衡量的差异.在两个代码示例中,两个版本的编译代码可能相同.
第一:这不是"内联"的意思.请参阅:什么是内联?
第二:不,表现不会有任何可衡量的差异.在两个代码示例中,两个版本的编译代码可能相同.