Operators are symbols that occur in nearly all programming and coding languages, for performing calculations and comparisons on data.

learn more… | top users | synonyms

0
votes
5answers
31 views

How do I displaying strings?

How can I get this code to work? I can't make it puts "+" or puts "]": puts " Enter an option:" puts "------------------" puts "1] Learn to FOIL" puts "2] Learn to factor" puts "3] Practice!!!!!!!" ...
0
votes
2answers
26 views

How to add the input from a textfield

Here is my code below, I will highlight what is throwing the error, I am completely lost on how to fix this... import java.awt.*; import java.awt.event.*; import java.applet.*; import ...
2
votes
1answer
36 views

Test for existence and correct value on an if statement

With JavaScript or CoffeeScript, is there an easy way to test for the following: if (locals.messages.text === "somestring") { ... } Now this needs three things to be true: locals needs to exist, ...
-1
votes
4answers
48 views

Difference between <> and != operator in if statement [duplicate]

which one is better to use between <> and != operators? ex: if($a <> NULL) { echo ("This is " . $a); } or if($a != NULL) { echo ("This is " . $a); }
0
votes
5answers
69 views

Why to avoid postfix operator in C++? [duplicate]

I heard a professor saying "Avoid postfix operator where the context allows to choose prefix". I search but I didn't found related posts in stackoverflow that explaining this. Why to prefer prefix ...
0
votes
3answers
39 views

Custom operators error when passing parameters c++

Im building custom operators and im having problems when passing parameters to them. For example class test{ public: test operator[](vector <string> s){ test a; ...
0
votes
1answer
25 views

Confused about MonogDB Query (PHP $and)

I have the following code in PHP to connect to my MongoDB instance: $connection_string = "mongodb://XXXXXXX:XXXXXX@XXXXX:XXX/myDB"; $mongo_or = new Mongo($connection_string); $db_or = ...
0
votes
3answers
86 views

C++ What is the % operator doing here?

I recently encountered code similar to this: std::string myString = "test"; boost::format fmt("%s"); fmt % myString; What is the (second) % operator doing here? EDIT: I understand the end ...
0
votes
3answers
34 views

Difference between bitwise inclusive or and exclusive or in java

public class Operators { public static void main(String[] args) { int a = 12; System.out.println("Bitwise AND:"+(12&12)); System.out.println("Bitwise inclusive ...
1
vote
2answers
61 views

What does the question mark (?) operator do?

I saw this operator in HAML code. I wonder what it is for. I see the following works: > ?{ => "{" > ?\s => " " > ?a => "a" And this doesn't work: > ?ab SyntaxError: ...
-5
votes
3answers
53 views

Call a function while setting value of a declarement [closed]

I want to call a function while setting a value. For example: int i; i = 123; //Here i want to call a function. //Want to do this: //i = 123;func(); //But i do not want to do like this. Can i add ...
0
votes
2answers
42 views

Reverse Value using Not Operator

I am just want to reverse the binary values of an integer using NOT ( ~ ) operator but when i were doing like this struct rev { unsigned i:3; //for only 3 bits means 000 to 111 }; r.i = 5; ...
0
votes
1answer
58 views

What does <> mean in visual basic?

I can't google it because google removes <> from the search even when surrounding it with quotes. So what does <> do in VB6?
0
votes
3answers
56 views

php syntax for if statement with multiple conditions ( `||` as well as `&&` )

Context: On our website, we calculate whether an item/order meets the criteria for free shipping using an if statement evaluating if a value - 'ff' - is true. Depending on conditions met it sets the ...
2
votes
4answers
74 views

concatenating strings using “+” in c++ [duplicate]

I am a novice in C++ and i am referring Accelerated C++. While trying one of its exercise questions which says: Are the following definitions valid? Why or why not? const std::string exclam = "!"; ...
0
votes
1answer
30 views

error linking with operator methods

This it's causing me a headache. I have this error linking. g++ -o node.o pathfinding.o prueba.o libmatrix.a -lm -lz -llog4cplus Undefined symbols for architecture x86_64: "operator<(Node ...
1
vote
1answer
43 views

How is this constant expression evaluated?

when explaining constant expressions, the standard (well, draft N1570) gives thi "enlightening" example: 118) Thus, in the following initialization, static int i = 2 || 1 / 0; the ...
1
vote
3answers
54 views

C Operator Precedence, post-increment programming issue

Can some one explain why the output of program is 0 1 1 3 1 void main(void) { int i=-1,j=0,k=1,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); } ...
0
votes
1answer
36 views

How to inline combine arrays in JavaScript?

Given two arrays, how to to pass a combination of both to a function, preferably with inline syntax? var current = [1.01, 3.01, 2.42, 4.31]; var preview = [0.89, 3.15]; /* * pass both combined to a ...
1
vote
3answers
49 views

Order of calls and side effects

Consider an operation like this : int a = f1(mystream)*f2(mystream)+f3(mystream); Where f1, f2, f3 are of the following form : int f(std::istream&) or int f(std::ostream&) Do I have ...
1
vote
1answer
51 views

Get list on basis of dropdownlist data in asp.net mvc3

I have two dropdownlists in my module. In one dropdownlist, I have hardcoded all the operators like <,>,<=,>=,== In second dropdownlist, I have hardcoded salary of employees like ...
4
votes
2answers
66 views

identifier “ostream” is undefined error [closed]

i need to implement a number class that support operator << for output. i have an error: "identifier "ostream" is undefined" from some reason eventhough i included and try also here the ...
1
vote
1answer
71 views

Why alternative keywords are not famous in place of in-built ascii operators? [duplicate]

In the list of C++ keywords, there are alternatives for the operators, such as: && and &= and_eq & bitand | bitor ~ compl ! not != not_eq || or |= or_eq ^ xor ^= ...
0
votes
5answers
79 views

Why does this number gets detected as bool?

I'm checking if value ir between 0 and -0.2 like so: float value = -0.1; if (0 < value > -0.2f) { } But I get error operator '>' cannot be applied to operands of type 'bool' and 'float'. I ...
1
vote
6answers
72 views

JavaScript adding a string to a number

I was reading the re-introduction to JavaScript on MDN and in the section Numbers it said that you can convert a string to a number simply by adding a plus operator in front of it. For example: ...
3
votes
2answers
78 views

What does ~~ in perl do?

I saw this code and couldn't understand what it was doing it compiled succesfully.I searched for ~~ OPERATOR but no luck. unless ($1 ~~ @tables) { push @tables, $1; }
0
votes
5answers
56 views

How to combine equality operators in an if statement in java?

In python, you can do if(a!=b!=c) How can you do the same thing in Java without having to separate them and write all the "&&" operators? I'm trying to check that all 10 elements are not ...
1
vote
2answers
36 views

Error: No operator << matches these operands?

I was practicing some c++ (trying to leave Java), and I stumbled on this annoying error saying:Error: No operater << matches these operands. I've searched this website for a clear answer and no ...
13
votes
1answer
462 views

Why is the *= operator not functioning the way I would expect it to?

#include <iostream> using namespace std; int main () { //If a triangle has a perimeter of 9 units, how many iterations(each iteration is 4/3 as much) would it take to obtain a perimeter of ...
2
votes
4answers
117 views

What does the << C++ operator do, other than shifting?

I saw a C++ snippet on a Qt sample that contains a few << operators. I'm aware of bit shifting, but it's apparent that these do something else: In this link: ...
0
votes
3answers
53 views

overloading operators, what is the purpose of the overladed operator in this example

I have been trying to understand the use of the overloaded operator in this code, however, I cannot wrap my mind around it. I do not understand exactly the purpose of the overloaded operator or why it ...
4
votes
2answers
59 views

Do you know a nice PHP hack to do inline conditional assignation?

I really enjoy || operator in JavaScript, where we can do inline conditional assignation. var a = 0; var b = 42; var test = a || b || 'default value'; console.log(test); // 42 This is clear to ...
0
votes
3answers
40 views

Implementing operator<< for a derived class

So I have a base class (Shape) and three derived classes, Circle, Rectangle and Square (Square is derived from Rectangle) I'm attempting to implement operator<< which just calls the correct ...
0
votes
2answers
35 views

= operator for a matrix class behaving weird

CPP #include "del2.h" Matrix::Matrix() { dArray = NULL; } bool Matrix::isValid() const { if (dArray == NULL) return false; return true; } Matrix::~Matrix() { delete [] ...
0
votes
0answers
12 views

Defining an object in c++ and initialize it with { } and an unsigned char array directly

Hi I have a template class in c++, I need to make an object of it and Initializing an instance of this class with an unsigned char array by overloading operators and internal vector property; I could ...
7
votes
5answers
100 views

precedence of ~ and ++ in java

consider this code snippet int j = 7; System.out.println(Integer.toBinaryString(j)); j = ~j++; System.out.println(Integer.toBinaryString(j)); prints 111 11111111111111111111111111111000 what i ...
4
votes
2answers
40 views

Multiple system explicit converters are allowed, but mutiple user explicit converters are not. Why?

If I have this code, this will compile and work as it should: class MyNumber // Just a class. { static public explicit operator MyNumber(byte b) { return new MyNumber(); } } ...
4
votes
2answers
159 views

Why can I not use the “<<” operator in a return statement?

For instance: std::stringstream formatMemUsage(...) { std::stringstream ss ... ... return ss << "MB"; // Error here } results in the the error no suitable user-defined ...
15
votes
2answers
497 views

Why does decrement loop runs faster than increment loop? [duplicate]

I was going through increment/decrement operators, and I encountered that if i run a loop in decremental form in that case it will run faster than the same loop in incremental form. I was expecting ...
0
votes
1answer
17 views

PHP Update a mysql table with operators

I have this short code but i want it to be relative with the current value, Like if the XP value is 3 and i run this script it will make so that the total value is 39. Any ide? Code: <?php include ...
-3
votes
1answer
42 views

And operators usage of && and !== in java

This is my first time looking into java and I'm trying to make this statement work. [if {(a) && (b) && (c) && (d)}!==0] {a}{b}{c}{d} Asssuming a b c d were all numbers ...
0
votes
1answer
51 views

MySQL NAND/NOR operations in Queries

Can any one help me in explaining how to write a query for NAND and NOR? I am getting confused? Is there any good example which help to understand the NAND and NOR operation in query? I worked in ...
1
vote
10answers
91 views

Operators in java: '+' with '=' vs '+='

I often use both forms: short and long of addition (also subtraction, multiplication, etc.) operator in java. And I thought that this doesn't impact to performance or speed, but I was confused by ...
10
votes
3answers
331 views

Compiler replaces explicit cast to my own type with explicit cast to .NET type?

I have the following code: public struct Num<T> { private readonly T _Value; public Num(T value) { _Value = value; } static public explicit operator Num<T>(T ...
0
votes
1answer
26 views

Javascript Bitwise to Regular Operators [duplicate]

I have been recently reading this book, "Supercharged Javascript Graphics", and it is just awesome. It has some really interesting concepts and examples using html5 canvas element and other graphics. ...
0
votes
0answers
40 views

Groovy, troubles with the range operator

I wrote a method in Groovy using the range operator in order to execute the same code multiple times: /** * Prints the {@code files} {@code copyCount} times using * {@code printService}. * ...
0
votes
1answer
16 views

input values with operators in a form

I want to allow users to insert values in a form with operators, ​​as in this example. 60*24 I need to know what is the most appropriate way to process this in php
4
votes
1answer
91 views

using and (&&) operator in if statement bash script

I have three variables: VAR1="file1" VAR2="file2" VAR3="file3" How to use and (&&) operator in if statement like this: if [ -f $VAR1 && -f $VAR2 && -f $VAR3 ] then ... ...
-3
votes
5answers
104 views

What does the '?' character do in this operation?

I'm just reading through some friends code and writing a test harness for it, and I've come across something that's bugging me: Console.WriteLine(inputString + (isPalindrome(inputString) ? ...
0
votes
0answers
19 views

Counting primitive operators

If ai > CurrentMax Then CurrentMax = ai The slide I was looking at said that there are 7 primitive operators here, and I just wanted to make sure that I understood which they were. I assume we ...

1 2 3 4 5 47