Tagged Questions
This tag is used for questions about the closest similar API, functionality, etc between two programming languages, frameworks, etc.
91
votes
16answers
26k views
27
votes
6answers
3k views
XSLT equivalent for JSON
Is there an XSLT equivalent for JSON? Something to allow me to do transformations on JSON like XSLT does to XML.
26
votes
3answers
4k views
Is there a python equivalent of Ruby's 'rvm'?
Q: Do we have anything functionally equivalent in Python to the Ruby version manager 'rvm'?
(RVM lets you easily switch completely between different versions of the ruby interpreter and different ...
12
votes
3answers
3k views
What is the equivalent of the Java BigDecimal class in C#?
BigDecimal is a class in the java.math package that has a lot of benefits for handling big numbers of a certain scale. Is there an equivalent class or data type in c# with this feature.
11
votes
5answers
515 views
In Ruby, what is the equivalent to an interface in C#?
I'm currently trying to learn Ruby and I'm trying to understand more about what it offers in terms of encapsulation and contracts.
In C# a contract can be defined using an interface. A class which ...
9
votes
5answers
2k views
How would you do the equivalent of preprocessor directives in Python?
Is there a way to do the following preprocessor directives in Python?
#if DEBUG
< do some code >
#else
< do some other code >
#endif
8
votes
3answers
154 views
Java: Can I use two different names in an enum to count as the same thing?
I have an enum class with the cardinal directions(North, East, South, West):
public enum Direction {
NORTH,
EAST,
SOUTH,
WEST;
}
Is there a way to be able to use multiple names for ...
7
votes
10answers
463 views
5
votes
5answers
2k views
Loop Java HashMap like Python Dictionary?
In Python, you can have key,value pairs in a dictionary where you can loop through them, as shown below:
for k,v in d.iteritems():
print k,v
Is there a way to do this with Java HashMaps?
5
votes
4answers
317 views
Equivalent of `__FILE__`, `__LINE__` in bash
Is there any variable in bash that contains the name of the .sh file executed ?
The line number would be great too.
I want to use it in error messages such as:
echo "ERROR: [$FILE:L$LINE] $somefile ...
5
votes
5answers
798 views
Python equivalent of IDL's stop and .reset
I'm relatively new to python but have a bit of experience using IDL. I was wondering if anyone knows if there are equivalent commands in python for IDL's stop and .reset commands.
If I'm running some ...
4
votes
4answers
473 views
equivalent CreateGraphics in wpf
So, I've used winForms .CreateGraphics to draw a variety of different things, from lines to boxes to images. It was very snappy and responsive.
I am trying to learn WPF in C#
I found that WPF allows ...
4
votes
4answers
155 views
What is the jQuery equivalent of the Prototype function .activate()
Prototype's activate function
Gives focus to a form control and selects its contents if it is a text input
according to the Prototype website. i.e.
$('my_element_id').activate();
What is the ...
4
votes
2answers
2k views
Objective C equivalent to Java's ArrayList
Just wondering if there is an equivalent to Java's ArrayList in Objective-C?
Or something that can be used to store objects/data that does not have a set size.
Thanks.
4
votes
1answer
2k views
jQuery equivalents to ExtJS functions extend(), apply() and namespace()?
ExtJS provides some great helper functions like:
Ext.extend()
Ext.apply()
Ext.namespace()
Are there any equivalents in jQuery? I know I could port all three to jQuery since I like them so much, ...
3
votes
2answers
53 views
What is [Android] Java's equivalent of VB.NET's Static Keyword?
Is there a Java equivalent - specifically on Android - for VB.NET's Static keyword? For those not familiar with VB.NET, take the following code snippet...
Sub MyFunc()
Static myvar As Integer = ...
3
votes
4answers
131 views
How can I convert this c++ template function to a C alternative?
I'm converting parts of a small C++ library to C (gcc). In doing so I'm wanting to convert the following template function to a macro (comments removed for readibility). CpuReadWriteFence() is ...
3
votes
4answers
132 views
Python Equivalent to Ruby's #each_cons?
Is there a Pythonic equivalent to Ruby's #each_cons?
In Ruby you can do this:
array = [1,2,3,4]
array.each_cons(2).to_a
=> [[1,2],[2,3],[3,4]]
3
votes
2answers
155 views
VB [(Function) handles …] equivalent in Delphi
Say we had something like
Private Sub ClickObject(ByVal sender As System.Object, ByVal e as System.Eventargs)
Handles Object1.click, Object2.click, Object3.click
Which takes the event after the ...
3
votes
3answers
774 views
is there a Java equivalent to null coalescing operator (??) in C#? [closed]
Possible Duplicate:
How to get the first non-null value in Java?
Is it possible to do something similar to the following code in Java
int y = x ?? -1;
more about ??
3
votes
2answers
129 views
String Pattern Matching for Limited, Ltd, Incorporated, Inc, Etc
We're doing a LOT of work towards trying to reconcile about 1,000 duplicate manufacturer names and 1,000,000 duplicate part numbers. One thing that has come up is how to "match" things like "Limited" ...
3
votes
1answer
128 views
Is there any equivalent of JVisualVM on DotNET?
I would like to know if there is an equivalent of the excellent Java JVisualVM (included with JDK, the command is "jvisualvm") on the DotNet platform ?
JVisualVM is a great tool that allows ...
3
votes
2answers
1k views
jquery 1.4.2 equivalent for setTimeout and clearTimeout
Is there any equivalent for setTimeout and clearTimeout functions in jquery 1.4.2.... I found this ex which uses jquery 1.3.2..
var alerttimer = window.setTimeout(function () {
...
3
votes
3answers
237 views
Is there an equivalent to Java Media Framework in C#?
Is there an equivalent to Java Media Framework in C#?
3
votes
2answers
3k views
Java TreeMap equivalent in C#?
Most places I've consulted say to use SortedList, but the problem is that the program I'm porting actually uses duplicate keys (differentiated by order), which is permissible with TreeMap, but not ...
2
votes
3answers
209 views
operators equivalent in delphi
I would like to know Delphi equivalent of the following operators.
++i/--i
i++/i--
i+=1/i-=1
I am aware of just Inc(i) for i++ and Dec(i) for i--.
Also under the notion that Inc(i,1) for i+=1 and ...
2
votes
2answers
95 views
'spaceless' equivalent of Django templates in Rails
Notice the readability and balance of:
<li class='aclass anotherclass <%= maybeaconditionalclass %>'>
<a href="<%= some stuff %>">
<%= some other stuff %>
...
2
votes
1answer
89 views
Python equivalent of php's virtual()
Do you know if there is a python equivalent of php's virtual() ?
My configuration is python, djanogo, mod_wsgi, apache
Trying to include a script that has only examples for php using the above ...
2
votes
4answers
161 views
String.Format (.NET) equivalent in Java?
The String.Format in .NET (maybe just VB.NET) convert {0}, {1}, ... into determined String, for example:
Dim St As String = "Test: {0}, {1}"
Console.WriteLine(String.Format(St, "Text1", "Text2"))
...
2
votes
2answers
104 views
Is there any #IF and #CONST .NET equivalent in Java/Android?
I have a project in which there're many codes only available in determined version. And, when I fix a bug, I have to fix them in all copies, it's very inconvenient. Is there any #IF and #CONST in ...
2
votes
1answer
53 views
AbstractPreferences equivalent in C#
Is there any class or analog for work with Base64 in c# like AbstractPreferences in java?
2
votes
4answers
95 views
Problem with equivalence of a few things while porting encryption code from java to c#
I am trying to port the below Java code to C#, but I am having some difficulty figuring out what would be the equivalent for:
SecretKey skey
SecretKeySpec skey_spec
IvParameterSpec iv_spec
KeyPair ...
2
votes
4answers
3k views
Java Equivalent to iif function
the question is simple, there is a functional equivalent of the famous iif in java?
For example:
IIf (vData = "S", True, False)
Thanks in advance.
2
votes
3answers
269 views
Data structure to group the elements of equivalence classes
I have to implement a data structure that groups the elements of a equivalence classes.
The API:
interface Grouper<T>{
void same(T l, T r);
Set<EquivalenceClass<T>> ...
2
votes
6answers
305 views
C# equivalent for VB keyword: with … end with?
Possible duplicate but I don't know right keywords in this case.
In VB if you are going to change multiple properties of a single object, there's a With/End With statement :
Dim myObject as Object
...
2
votes
2answers
210 views
PHP developer looking for solutions equivalent to j2ee architecture
I am a PHP developer, I read about J2EE technologies and I want to implement such technologies( n-tier, EJB, JPA...) with PHP and all what coming with ( MySQL, Apache..).
2
votes
2answers
118 views
What's the .NET equivalent of a COM LocalServer?
In VB6, it was a simple matter to write applications that served up COM classes, the application would run as a system-wide singleton and would be able to serve COM classes to multiple processes. I ...
2
votes
3answers
231 views
What’s the Linq to SQL equivalent to CEILING?
How do I do this
SELECT CEILING(COUNT(*) / 10) NumberOfPages
FROM MyTable
in Linq to SQL?
2
votes
3answers
371 views
equivalent number of instruction
I've a question (just like me)...
but...if I've a choosen algorithm written in C or C++ or whatever code you want...fixed a compiler I can determine the number of instructions but these intructions ...
2
votes
4answers
609 views
C++ .NET equivalent to java public static void main()?
In java I can simply test classes directly with
public static void main()
I then just add quick code and under Eclipse "Run" the class. Is there anything similar in C++ .NET ?
Right now I have to ...
1
vote
1answer
52 views
java equivalent of .net FileStream
I have a small .Net library that I would like to port to java. Part of the requirement for this library is that it should serialize state into a file on disk and this file should remain "open" so ...
1
vote
3answers
49 views
What is the Equivalent code From array_push in java?
Hi guys I need the equivalent java code of this PHP code:
<?php
$stack = array("orange", "banana");
array_push($stack, "apple", "raspberry");
print_r($stack);
?>
the Output is:
Array
(
...
1
vote
1answer
76 views
What is the INKEY$ equivalent in C programming language
I am a beginner in C programming language but I have knowledge of programming in QBasic. I make lots of small programs in Qbasic to solve my basic tasks and I am recently rewriting those programs into ...
1
vote
1answer
129 views
C# equivalent of the C++ GDI code
Can somebody please help me to translate the following to the C# equivalent.
mapPicture is a picture object in GDI code however it is a panel in C#.
I have done the code as follows,
Original MFC ...
1
vote
1answer
97 views
Is there a Mac/Xcode equivalent to the Windows Workarea?
I am creating a toolbar on Windows that is being ported over to the Mac, is there such a concept as a workarea on the Mac, like there is on Windows.
If you are unfamiliar of what the workarea on ...
1
vote
0answers
61 views
ASP.NET 1.1 - XPathNavigator OuterXml equivalent
I'm working with the Google Maps API to do GeoCode lookups in 1.1 and I'm running into a brick wall with the XPathNavigator object.
I need to create a "sub-navigator" so that we can perform global ...
1
vote
3answers
98 views
What is C# Equivalent to C++ STL fill method
In C++, we can set a range of values of an array(and other similar containers) using fill.
For example,
fill(number, number+n,10);
The above code will set the first n values of the array number ...
1
vote
4answers
212 views
java.util.zip.deflater equivalent in c#
does anyone know how can I achieve java's Deflater.deflate() functionality in .NET so it would be understandable for java's Infalter.inflate() method?
regards,
Rafal
1
vote
1answer
54 views
MySQL DB selects records with and without umlauts. e.g: '.. where something = FÖÖ'
My Table collation is "utf8_general_ci". If i run a query like:
SELECT * FROM mytable WHERE myfield = "FÖÖ"
i get results where:
... myfield = "FÖÖ"
... myfield = "FOO"
is this the ...
1
vote
3answers
168 views
Translate code from Java to .NET
I need to translate this fragment from Java to .NET (rather C#, but I know Visual Basic too).
This is code:
typeStrings = new Dictionary<Int16, String>();
Field[] fields = ...