schoel Posted May 12, 2009 Posted May 12, 2009 Is it possible to define your own operators? For example, if I would like to define ~= for checking if two numbers are almost equal.
torels Posted May 12, 2009 Posted May 12, 2009 (edited) this is possible in C++... just for the fact that operators are in the end functions, and nothing more than thatso use a function instead Func _AlmostEqual($num1, $num2)some codereturn YourResult (True or False)EndFuncCheers oooh I'm so glad I'm learning c++ Edited May 12, 2009 by torels Some Projects:[list][*]ZIP UDF using no external files[*]iPod Music Transfer [*]iTunes UDF - fully integrate iTunes with au3[*]iTunes info (taskbar player hover)[*]Instant Run - run scripts without saving them before :)[*]Get Tube - YouTube Downloader[*]Lyric Finder 2 - Find Lyrics to any of your song[*]DeskBox - A Desktop Extension Tool[/list]indifference will ruin the world, but in the end... WHO CARES :P---------------http://torels.altervista.org
schoel Posted May 12, 2009 Author Posted May 12, 2009 Yeah, I'm aware that it is possible in C++. I know that they are just functions but the code would be a lot more readable if I could make it an operator. I will have lots and lots of comparisons and an operator would just make it a lot nicer.
torels Posted May 12, 2009 Posted May 12, 2009 well when you are working with things the level of ~= something like _AlmosEqual(5,5.2) in its palce doesn't ruin your code so much you know nor does any other function if sufficently descriptive and clearly named Some Projects:[list][*]ZIP UDF using no external files[*]iPod Music Transfer [*]iTunes UDF - fully integrate iTunes with au3[*]iTunes info (taskbar player hover)[*]Instant Run - run scripts without saving them before :)[*]Get Tube - YouTube Downloader[*]Lyric Finder 2 - Find Lyrics to any of your song[*]DeskBox - A Desktop Extension Tool[/list]indifference will ruin the world, but in the end... WHO CARES :P---------------http://torels.altervista.org
weaponx Posted May 12, 2009 Posted May 12, 2009 An operator wouldn't even be enough to satisfy an "almost equal" comparison, you would need to also specify a tolerance AND whether its absolute or relative.
torels Posted May 12, 2009 Posted May 12, 2009 An operator wouldn't even be enough to satisfy an "almost equal" comparison, you would need to also specify a tolerance AND whether its absolute or relative.surelybut with Operator Overloading (as schoel said) it would be possible Some Projects:[list][*]ZIP UDF using no external files[*]iPod Music Transfer [*]iTunes UDF - fully integrate iTunes with au3[*]iTunes info (taskbar player hover)[*]Instant Run - run scripts without saving them before :)[*]Get Tube - YouTube Downloader[*]Lyric Finder 2 - Find Lyrics to any of your song[*]DeskBox - A Desktop Extension Tool[/list]indifference will ruin the world, but in the end... WHO CARES :P---------------http://torels.altervista.org
weaponx Posted May 12, 2009 Posted May 12, 2009 surelybut with Operator Overloading (as schoel said) it would be possible Only if the tolerance is static and not user specified.Operators only allow 1 operand on each side so how would I go about specifying a tolerance? You can't. Even in C++ this would be useless.
schoel Posted May 12, 2009 Author Posted May 12, 2009 Yeah I was thinking about a static tolerance. I guess I will have to use a function though.
Richard Robertson Posted May 12, 2009 Posted May 12, 2009 (edited) You could do something like bool operator ~=(double, vectordouble) // not a real operator vectordouble operator ,(double, double) and then just if (myvar ~= (1.3, 1.0)) And voila. Edited May 12, 2009 by Richard Robertson
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now