gpt4 book ai didi

function - 在函数外部声明数组会提高重复调用函数的性能吗?

转载 作者:行者123 更新时间:2023-12-03 15:09:02 25 4
gpt4 key购买 nike

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 outside MyFunc increases the performance of repeatedly calls to MyFunc?

没有。无论 MyArray 是函数的本地变量还是更广泛范围内的常量,编译器都会生成相同的代码。类型常量存储在可执行文件的数据段中,无论其范围如何。

关于function - 在函数外部声明数组会提高重复调用函数的性能吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32476219/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com