Multiple new vs one new
#1

Umm so is this better

pawn Код:
new x;
new z;
new a;
new b;
new c;
...
or

pawn Код:
new x,
      z,
      a,
      b,
      c;
Reply
#2

I think it's the same thing, except for the second version you write less.
Reply
#3

Quote:
Originally Posted by ******
Посмотреть сообщение
Define "better".
Faster? Like using it in an timer or smth
Reply
#4

Quote:
Originally Posted by ******
Посмотреть сообщение
Then neither. And if you think that is what you need to worry about in code, you don't understand optimisations at all.
Calm down, you didn't at one point.

and no @IdonTmiss that's the exact same thing, just more neat in a way.

If you want to use less variables you can use arrays, i.e.

PHP код:
new PlayerCash[MAX_PLAYERS]; 
This would make a variable that has 999 different, "slots" lets call them.

This means that you can do something like this.

PHP код:
if(PlayerCash[0] == 0)
{
    
SendClientMessage(0, -1"Ha Ha, you're poor.");

That above would check to see what integer is stored to PlayerCash for the "slot" 0 (slot 0 being Player ID 0 on the tab list)

Very basic but you get the idea.

This also does not improve optimisation, again it's just neater.

Variables have such a tiny tiny impact on the server, you shouldn't worry about the amount of variables you're using tbh.
Reply
#5

Quote:
Originally Posted by ItsRobinson
Посмотреть сообщение
Calm down, you didn't at one point.

and no @IdonTmiss that's the exact same thing, just more neat in a way.

If you want to use less variables you can use arrays, i.e.

PHP код:
new PlayerCash[MAX_PLAYERS]; 
This would make a variable that has 999 different, "slots" lets call them.

This means that you can do something like this.

PHP код:
if(PlayerCash[0] == 0)
{
    
SendClientMessage(0, -1"Ha Ha, you're poor.");

That above would check to see what integer is stored to PlayerCash for the "slot" 0 (slot 0 being Player ID 0 on the tab list)

Very basic but you get the idea.

This also does not improve optimisation, again it's just neater.

Variables have such a tiny tiny impact on the server, you shouldn't worry about the amount of variables you're using tbh.
I read on this community at an optimization section that tin array variables are slower.
I do not know for sure whether it's true or not.
Reply
#6

Quote:
Originally Posted by Florin48
Посмотреть сообщение
I read on this community at an optimization section that tin array variables are slower.
I do not know for sure whether it's true or not.
Like I said, you shouldn't worry about arrays/multiple variables the impact is absolutely minuscule, also like I said, it wasn't an optimisation, just more neat than using 12 different variables.
Reply
#7

I mainly use the second method. Just looks better.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)