This tag is used for questions about similarities between any of various programming constructs. Comparisons include correspondences between API, functionality, syntax, features, methodologies and the like.

learn more… | top users | synonyms

2
votes
1answer
26 views

.NET code execution at normal process exit?

In C there is the atexit function, which The atexit() function registers the given function to be called at normal process termination, either via exit(3) or via return from the program's main(). ...
-1
votes
1answer
24 views

what is the equivalent of the instruction sed -i in solaris? [closed]

I am searching for the equivalent of this line: sed -e /$LINE/d -i TELS/telephonenumbers.txt It works fine in Ubuntu, Fedora, OpenSUSE and cygwin, but it does not work in Solaris, I find that I can ...
1
vote
1answer
64 views

Assignment operator overload not getting called

I have two classes, Database and Record. class Database { private: Record* head; public: Database(Record*); Database(); Database(const Database&); ...
0
votes
0answers
49 views

Equivalent R factor data type in C#?

Any recommendations for replicating R factor data type in C# which will handle large data variables and avoding performance issues? Situation As my first stackoverflow post....I'm translating a ...
-1
votes
3answers
125 views

Working equivalent for method .some() in javascript or jquery?

Was looking for "equivalent for some method in javascript" and "return just one value if is in array", but saw only the answers to the way in which to determine the type of variables or too many ...
2
votes
1answer
59 views

__VA_ARGS__ runtime equivalent?

I'm trying to make a function similar to this: #define printf_copy(s, ...) printf(s, ##__VA_ARGS__) // acceptable! but that's a preprocessor, I need one for runtime, like this: + (NSString ...
0
votes
1answer
62 views

Does .NET have an equivalent of **kwargs in Python?

I haven't been able to find the answer to this question through the typical channels. In Python I could have the following function definition def do_the_needful(**kwargs): # Kwargs is now a ...
1
vote
0answers
39 views

JAAS equivalent for .NET

Is there a JAAS equivalent for .NET? We have several Java EE product with JAAS. It works quite good. We have written several own modules. In addition to the Java EE products, we also want to develop ...
2
votes
4answers
182 views

LEFT OUTER JOIN EQUIVALENT

I have a tables contains null values. In ORDER table i have 2 null in PART_ID section and 2 null values in CUSTOMER_ID. And i have that kind of query: SELECT O.ORDER_ID , O.ORDER_DATE , O.CUST_ID, ...
0
votes
0answers
98 views

Dojo + IE8 issue

I have to adjust site to work correctly in IE8, it stops when this function should be called. dojo.query(document).connect('scroll',function(){FUNCTION BODY}) Is there an equivalent for IE8?
0
votes
3answers
109 views

Java equivalent to IEnumerator from C#?

Are there interfaces in Java library, which also enumerates some series, but follows slightly another logic than Iterator and Enumeration? Namely they should return boolean on next(), saying whether ...
-1
votes
2answers
89 views

Javascript regexp.test() .NET equivalent [closed]

How can I do the following in C# : var re = /^\d{4}(\/\d{2}){2} \d{2}(:\d{2}){2}$/; re.test('2013/03/05 15:22:00'); // returns true
1
vote
1answer
62 views

Is there a simpler construct for Python map(None, fcn())?

The documentation for Python map() states in part: If function is None, the identity function is assumed; Therefore, if I have some Python code like this: def yearsback(tbl, yb): def fcn(): ...
0
votes
2answers
77 views

Are these Python expressions equivalent to each other?

Given the following Python function (ignoring its shortcomings): def adjust_year(year): return year > 2000 and year - 2000 or year - 1900 If I change it to instead be: def adjust_year(year): ...
1
vote
2answers
81 views

Is “length and length” any different than just “length” in Python?

I've found the following code snippet: length = length and length or len(string) To me it appears that this should be equivalent to: length = length or len(string) Can I collapse the expression ...
0
votes
2answers
216 views

jQuery mobile equivalent for mouseover

I have a function that is activated among a series of thumbnail img tabs when the cursor hovers. The images are display:block and position:absolute and the location (top) and size change on ...
0
votes
1answer
143 views

Convert .Net DLL to Flash Library?

I've made an .Net Dynamic Link Library, written in c#, to be used in Silverlight applications. Now, I want to have the same kind of functionallity to be used when developing Adobe Flash ...
0
votes
1answer
87 views

Equivalent matlab command on aforge library

I want to find equivalent matlab command in aforge library. image = imread('image path'); image = imopen(image,strel('line',2); What equivalent on the Aforge libray ?
1
vote
2answers
59 views

Equivalent of the query from sql server in mysql

I have query in SQL Server , but i don't know its equivalent in mysql. sql code is: select username as t ,*from users this code running in sql but this code not run in mysql. is there way?
2
votes
2answers
102 views

What is the equivalent of the Objective-C 'tag' property in Java ?

So I have two JSliders each of which invokes the stateChanged() method and I want to figure out which of the sliders invokes it. In Objective-C, I used to use the tag property to differentiate which ...
0
votes
1answer
53 views

What is the equivalent of $args[basename($img_path)] = '@' . realpath($img_path); in javascript?

What is the equivalent of the following PHP code done in javascript? $img_path = "test.jpg"; // image located on my server $args = array( 'aid' => $aid, // album id 'caption' => ...
2
votes
1answer
242 views

GetCommandLine linux *true* equivalent

Similar question to Linux equivalent of GetCommandLine and CommandLineToArgv Is it possible to get the raw command line in linux? The file /proc/self/cmdline is destroyd. ./a.out files="file ...
0
votes
1answer
113 views

TBitmap.monochrome property equivalent in c#

I'm trying to convert a Delphi code to C# and I wonder if there's an equivalent of VCL.Graphics.TBitmap.Monochrome property in C#? It's explanation it says: Determines whether the bitmap displays ...
1
vote
2answers
38 views

SegFault with one version of equivalent code?

There are two sets of code that I think are equivalent, but one causes a seg fault and the other doesn't. I'm really confused about why this is the case... What I would like is to create a find ...
1
vote
3answers
151 views

Java Equivalent of Oracle translate

Is there any equivalent string function or library in java that behaves the way oracle translate function does? In oracle I can do this: select translate( '23423k!(dfgd){sdf};', '(){}k!', '{}()' ...
2
votes
1answer
94 views

Equivalent to Eclipse Classpath Container in Intellij IDEA

I've written an Eclipse plug-in that provides a classpath container (just for the sake of completeness - the CPC gets its knowledge from the local development server). Now I was asked to provide the ...
0
votes
2answers
667 views

Is there an equivalent in C++ of PHP's explode() function? [duplicate]

Possible Duplicate: Splitting a string in C++ In PHP, the explode() function will take a string and chop it up into an array separating each element by a specified delimiter. Is there an ...
0
votes
3answers
289 views

Double.parseDouble() equivalent in C++? [duplicate]

Possible Duplicate: std::string to float or double I am writing a calculator (learning C++), and just decided to make a calculator, since that was the first thing I did when learning Java. ...
0
votes
2answers
141 views

Ruby( on Rails) LINQ .Select data transformation equivalent

So let's say I have an array of strings in C#, I could convert this array of strings to an array of integers using the following LINQ statement: (new[] {"1", "2", "3"}).Select(x => int.parse(x)) ...
0
votes
1answer
222 views

CMYK color values to its int equivalent

I have CMYK color values ( 0, 0.58 ,1 ,0 ) . Now I have to convert to its Integer equivalent using C# . I think it is possible using Bitwise operator but not sure . Kindly assist me how can achieve ...
2
votes
1answer
320 views

openssl equivalent for AES256EncryptWithKey method

How to get the same result as the following objective-c encrypting method with the command line openssl ? - (NSData *)AES256EncryptWithKey:(NSString *)key { NSData *returnData = nil; char ...
0
votes
2answers
226 views

Equivalent code for VB .net 2005

I have the following code sample in VB .net 2008 Public Function CheckPathFunction(ByVal path As String) As Boolean Return System.IO.File.Exists(path) End Function Public Function ...
1
vote
1answer
1k views

Python pandas equivalent for replace

In R, there is a rather useful replace function. Essentially, it does conditional re-assignment in a given column of a data frame. It can be used as so: replace(df$column, df$column==1,'Type 1'); ...
3
votes
3answers
252 views

What is the Java equivalent of the C# generic constraint “T,K: where T : It<K>”?

What is the equivalent in Java for this C# declaration ? public class AsyncThreadPool<T, K> where T : IAsyncThread<K> { and IAsyncThread is an interface public interface ...
1
vote
1answer
128 views

Equivalent of 'where' fortran keyword in Java?

I'm writing a Java program in which I'm checking a list against a string, and then doing stuff to that. In fortran I'd write something along the lines of where(list(:)==stringToCheck){ ... ...
3
votes
5answers
471 views

What is C# equivalent of PHP's mysql_fetch_array function?

I am learning C#/ASP.NET and I am wondering what the C# equivalent of the following PHP code is? I know the userid, and I want to fetch the rows from this table into the array of the variable "row", ...
1
vote
2answers
143 views

Java equivalent for AttributeUsage C#

I have to translate some code from C# to Java and I have the following piece of code : [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)] public class ...
3
votes
3answers
306 views

Data structures equivalents of stl containers

i study data structures and i want to ask what are the equivalents of STL containers. for example vector = dynamic array queue = queue stack = stack priority_queue = heap list = linked list set = ...
0
votes
2answers
227 views

Is there any equivalent to always true lambda expression?

I'm using a series of commands called RelayCommand which have a function to execute and a function that returns a bool telling whether or not you can execute the first function. The fact is that I'm ...
0
votes
2answers
136 views

Python equivalent of java ObjectOutputStream and ObjectInputStream?

In java I can transfer objects between server and client by using Object Output Stream and Object Input Stream. Is there anything equivalent in python? Related: python equivalent of java ...
0
votes
1answer
102 views

Is there a ruby equivalent to Java's “next[type]” scanner? Specifically, one that stops looking after the first instance of that type?

I am trying to reprogram a Java program that I made into Ruby, to help me learn the language. However, I'm having a lot of trouble finding a way to code this particular section of Java code in Ruby: ...
5
votes
2answers
63 views

What is the equivalent of PHP's InfiniteIterator in .NET?

I had a discussion on PHP's InfiniteIterator with a friend. Is there an equivalent of it in the .NET world?
0
votes
1answer
42 views

jquery UI Autocomplete equivalent liblary

I am searching for Jquery UI autocomplete equivalent. I can't use jQuery UI in my project. Any sugestions for some libraries that should I use ?
2
votes
6answers
497 views

What will be the java equivalant code for the following code?

I am using JNA to call methods of user32.dll and kernel32.dll. It is working fine as of now. I got stuck in some issue, and I got to know that I have to call this method. void SendCommandToConsole( ...
1
vote
1answer
876 views

C# equivalent of php mysql_real_escape_string function

I'm looking for the equivalent to the PHP function mysql_real_escape_string() to use in C#.NET. I work with the .NET 3.5 framework. I can't find anything to use. I read something that the ...
2
votes
3answers
826 views

C# equivalent of fprintf

I have been converting some code from C++ to C#. My lack of understanding of C# API doesnt let me find the equivalent of fprintf. What Im basically trying to do is write a helper class to Log ...
2
votes
1answer
73 views

Rake equivalent to make -k (--keep-going)

By default Rake will stop at the first exception raised. There doesn't seem to be a command line equivalent to make -k, is there any way to do it programmaticaly?
2
votes
1answer
406 views

BufferedImage.getRGB C# Equivalent?

Hi I'm trying to convert an application in Java from C# and this is the only problem I am having .. : Sidenote: That Bitmap class is a class I have made. Java Code: for (int x = 0; x < ...
0
votes
4answers
891 views

UML and its equivalent Java Code

I have drawn UML class diagram. Now, my task is to convert that UML class diagram to equivalent Java code. I do not want to use any automated tool, which generates Java code from UML diagram. Kindly ...
0
votes
1answer
428 views

Markitup picture upload php source code equivalent in asp.net

I need asp.net equivalent of this source code block. /* The following is a very basic PHP script to handle the upload. One might also * resize the image (send back the *new* size!) or save some image ...

1 2 3 4