Tagged Questions
The typeconverting tag has no wiki summary.
8
votes
4answers
2k views
How Can I Convert Types at Runtime?
My scenario should be simple... the type I want to convert FROM is ALWAYS 'string'. What I want to convert to... could be many things - ints, DateTimes, ... strings, etc.
This would be easy:
string ...
2
votes
1answer
285 views
processing: convert int to byte
I'm trying to convert an int into a byte in Processing 1.0.9.
This is the snippet of code that I have been working with:
byte xByte = byte(mouseX);
byte yByte = byte(mouseY);
byte setFirst = ...
1
vote
5answers
113 views
Conversion type
I've got the following question.
I've got one class "Instellingen" that's a field in 3 other classes
public class Instellingen
{
private int _ID;
}
public class Class1: Button
...
0
votes
3answers
66 views
Accessing array values returned from SQL in Ruby
I am certain this is very simple, but I'm a noob to Ruby and can't seem to find the answer to a very basic question.
I have a table with a list of words in PostgreSQL. I am getting a return value ...