code-conversion Questions

8

Solved

I have a Kotlin source file, but I want to translate it to Java. How can I convert Kotlin to Java source?
Cornwallis asked 22/1, 2016 at 23:7

5

i wanna get a xml representation of the ast of java and c code. 3 months ago, i asked this question yet but the solutions weren't comfortable for me srcml seems to be a good solution for this pro...
Cowey asked 12/5, 2010 at 10:26

1

I’ve been investigating how I can alter the behaviour of c# method execution specifically when an exception occurs to support: Retry/Continue: to be able to try the same statement again and carry ...
Oophorectomy asked 13/2, 2017 at 10:32

5

Solved

In a pandas dataframe created like this: import pandas as pd import numpy as np df = pd.DataFrame(np.random.randint(10, size=(6, 6)), columns=['c' + str(i) for i in range(6)], index=["r" + str(...
Doubtful asked 8/6, 2016 at 22:45

1

In C and C++, the behavior of signed integer overflow or underflow is undefined. In Java and C# (unchecked contexts), the behavior seems to be defined to an extent. From the Java specification,...

4

Solved

We have a large ASP (classic ASP) application and we would like to convert it to .NET in order to work on further releases. It makes no sense continuing to use ASP as it is obsolete, and we don't w...
Kaufman asked 21/9, 2008 at 13:53

3

I'm taking a task converting Java code to Objective C. This is the code in Java that I have to convert: private String getHash(String input) { String ret = null; try { MessageDigest md = Me...
Gorgias asked 29/12, 2011 at 12:42

3

Solved

I'm trying to convert some code so that it compiles on gcc too (right now, it compiles only on MSVC). The code I'm stuck at is in a pseudo-formatting function that accepts as input a format string...
Maharajah asked 26/12, 2010 at 19:10

5

Solved

Is there an easy way to convert jQuery code to regular javascript? I guess without having to access or understand the jQuery source code.
Jegger asked 11/6, 2009 at 0:39

6

Solved

(Yes I know I can call Java code from Scala; but that is pointless; I want to DELETE the Java code, not keep it around and have to look at it and maintain it forever!) Are there any utilities...
Wallaroo asked 20/3, 2010 at 17:44

1

Solved

I have to convert an application with about 100k lines of code from one programming language to another (java to c++). I'm looking for a solution to track my progress and make sure that noth...
Perdue asked 13/9, 2013 at 21:59

4

I need to translate a C struct to C# which uses bit fields. typedef struct foo { unsigned int bar1 : 1; unsigned int bar2 : 2; unsigned int bar3 : 3; unsigned int bar4 : 4; unsigned int bar...
Brainwash asked 25/2, 2011 at 10:12

2

Solved

I have the c++ source code of functionality which is appealing to me. What effort/work is involved/required in order to either reference this from a .net application or build this code as a .net a...
Alexisaley asked 4/1, 2013 at 6:25

4

Does a parser exist for Delphi which can be used to convert the Delphi code into Java code automatically?
Servant asked 30/9, 2009 at 7:45

2

Solved

As a follow up to my question here, I am trying to implement the following PHP function in Objective-C, which will generate a cartesian product: function array_cartesian_product($arrays) { $resul...
Anamorphism asked 25/11, 2011 at 5:16

2

Solved

Can anybody help me by suggesting the name of an converter which converts C# code to Java code. Actually, I have a tool which is written in C# code and I am trying to modify it. As I have no ...
Pruitt asked 11/8, 2011 at 16:58

2

Solved

I'm converting this code from C++ to Delphi but I don't get the following part of the code. Can anyone explain me what the following code means; what's happening to the szBuff buffer ? I'm pretty ...
Mesomorphic asked 30/6, 2011 at 16:47

3

Solved

I need a C# to VB.NET code converter, and I'm willing to pay. I want something that's ultra convenient, as I want to reduce the amount of copy/paste that I have to do... so could anybody give me so...
Montparnasse asked 29/8, 2010 at 0:51

2

Solved

I am curious as to how people port open source projects such as Lucene and Hibernate from Java to .NET? Is it a simple matter of using the Java Language Conversion Assistant 2.0 released by M...
Sherrilsherrill asked 5/2, 2010 at 12:48

1

Solved

I have some code that starts a process and hooks up an event handler to handle when the process exits, the code I have is written in C# and I wonder if something similar is possible with Delphi. S...
Trespass asked 5/1, 2010 at 19:32

0

I'm trying to create Jump list on windows 7 for my application using Delphi. I found this c++ code, but I'm not sure how to translate it to Delphi, any help? void CreateJumpList() { IC...
Hobbes asked 18/6, 2009 at 17:43

2

Solved

We have an old project written using Managed C++ syntax. I would like to propose to the team a reasonably pain-free (I don't mind some level of human interaction, I think I'm realistic in my ...
Deppy asked 30/9, 2008 at 4:40
1

© 2022 - 2024 — McMap. All rights reserved.