Jump to content
  • 0

Более оптимальный код


alex_web64
 Share

Question

8 answers to this question

Recommended Posts

  • 0
var a = true, b = 0;for(var i = 0 ; i < 1000 ; i++){  if(a) b++;  a++;}

В вашем варианте в каждой итерации цикла будет проверяться значение а. Если в цикле будет 1000 000 итераций, будет милион проверок, в которых результат будет один и тот же.

Link to comment
Share on other sites

  • 0
В вашем варианте в каждой итерации цикла будет проверяться значение а. Если в цикле будет 1000 000 итераций, будет милион проверок, в которых результат будет один и тот же.

 

оу вы правы, чот я под конец дня фигню сморозил.

Link to comment
Share on other sites

  • 0

зачем делать миллион лишних проверок, если достаточно один раз проверить а?


 

Если это кусок вполне рабочего кода

Нет, он исключительно для примера, которой отображает задачу, которую я хочу решить.


Я что-то такое ожидал получить, но не знаю, как правильно это записать:
 

var a = 0, b = 0;function funcA(){    a++;};if(true){// добавить в funcA() b++};for(var i = 0; i < 1000; i++){    funcA();};console.log(a,
Edited by alex_web64
Link to comment
Share on other sites

  • 0

 

Получилось сделать самому

var a = 0, b = 0; var funcB = funcA;function funcA(){    a++;};if(true){	funcB = function() {  		funcA();        b++;	};};for(var i = 0; i < 1000; i++){	funcB();};

Ну тогда можно было просто написать так

for (var i = 0; i < 1000; i++){  a++;  b++;}
Link to comment
Share on other sites

  • 0

Мне обязательно нужна проверка перед тем, как плюсовать b.

if(true){	funcB = function() {  		funcA();        b++;	};};

Пытался все упросить для примера, в итоге всех запутал..

if (true) { ... } -- всегда выполняться будет.

Видимо, здесь ошибка какая-то.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy