作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
function MyFunc(const Value: Integer): Integer;
const
MyArray: array[0..255] of Byte = ( ... ); // values of the array here
begin
... // Some codes here
Result := Integer(MyArray[Value shr 58]);
end;
在 MyFunc
之外声明 MyArray
会提高重复调用 MyFunc
的性能吗?
最佳答案
Will declare
MyArray
outsideMyFunc
increases the performance of repeatedly calls to MyFunc?
没有。无论 MyArray
是函数的本地变量还是更广泛范围内的常量,编译器都会生成相同的代码。类型常量存储在可执行文件的数据段中,无论其范围如何。
关于function - 在函数外部声明数组会提高重复调用函数的性能吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32476219/
我是一名优秀的程序员,十分优秀!