English 中文(简体)
AS3 - 有条件的单班条AS3
原标题:AS3 one-liner with conditionals

如何设计一个有条件的单班轮返回线?例如,如果我想将中位返回线转换为中位返回线:

//assuming sorted input array
return ((inputArray.length % 2) && (inputArray[int(inputArray.length/2)] + inputArray[int(inputArray.length/2)+1]) / 2) || inputArray[int(inputArray.length/2)+1];

有什么办法吗?

最佳回答

您应该使用永久操作员 :

return (inputArray.length % 2 != 0) ? (inputArray[int(inputArray.length/2)] + inputArray[int(inputArray.length/2)+1]) / 2 : inputArray[int(inputArray.length/2)+1];

相当于:

if (inputArray.length % 2 != 0) {
    return (inputArray[int(inputArray.length/2)] + inputArray[int(inputArray.length/2)+1]) / 2;
} else {
    return inputArray[int(inputArray.length/2)+1];
}

如果您只想要使用 , 您可以使用以下方法( 这不是真的一个好的编程样式 ):

((inputArray.length % 2 != 0) || return inputArray[int(inputArray.length/2)+1]) && return (inputArray[int(inputArray.length/2)] + inputArray[int(inputArray.length/2)+1]);

相当于:

(condition || return value2) && return value1;

http://en.wikipedia. org/wiki/short-second_valuation" rel="no follow">short-second value of boolean 操作员的短路评价 :

  • if condition is true, return value2 is not evaluated and return value1 will be executed.
  • if condition is false, return value2 will be evaluated.
问题回答

我将提出一个更可读的版本,不重复,但有一些变数。

var index:int = int(inputArray.length / 2);
var item1:Number = inputArray[index];
var item2:Number = inputArray[index + 1];
var median:Number = (item1 + item2) / 2;

return (inputArray.length % 2 != 0) ? median : item2;

请尝试修改条件 :

return ((inputArray.length % 2) && (((inputArray[int(inputArray.length/2)] + inputArray[int(inputArray.length/2)+1]) / 2) || inputArray[int(inputArray.length/2)+1]));




相关问题
Maths in LaTex table of contents

I am trying to add a table of contents for my LaTex document. The issue I am having is that this line: subsubsection{The expectation of (X^2)} Causes an error in the file that contains the ...

Math Overflow -- Handling Large Numbers

I am having a problem handling large numbers. I need to calculate the log of a very large number. The number is the product of a series of numbers. For example: log(2x3x66x435x444) though my actual ...

Radial plotting algorithm

I have to write an algorithm in AS3.0 that plots the location of points radially. I d like to input a radius and an angle at which the point should be placed. Obviously I remember from geometry ...

Subsequent weighted algorithm for comparison

I have two rows of numbers ... 1) 2 2 1 0 0 1 2) 1.5 1 0 .5 1 2 Each column is compared to each other. Lower values are better. For example Column 1, row 2 s value (1.5) is more ...