26.12.2011, 23:45
Quote:
format(string,256, "" ... es mejor format(string,sizeof(string), "", ... (ademas del 256 que es innecesario.)
|
He hecho un test y los resultados concuerdan
pawn Код:
#include <a_samp>
public OnFilterScriptInit()
{
new string[128];
new tick = GetTickCount();
for(new i; i<2000000; i++)
{
format(string,128,"%s","hola");
}
printf("Si format sabe el tamaсo tardo: %d",GetTickCount()-tick);
new tick2 = GetTickCount();
for(new i; i<2000000; i++)
{
format(string,sizeof(string),"%s","hola");
}
printf("Si format no sabe el tamaсo tardo: %d",GetTickCount()-tick2);
print("------------------------------------------------------------");
return 1;
}
public OnFilterScriptExit()
{
return 1;
}
Quote:
Originally Posted by a_samp.inc
pawn Код:
|