Questions tagged [value-of]
138 questions
-5
votes
1 answer
Can you write the value of a String directly in the code c#
I would like to us the value of a String i have created and write out the value in my code. In this example i don't know the value of the String "attribut":
public void EditUser(Int32 user_no, String attribut, String change)
{
tmpUser =…

Axel Reinholdz
- 1
- 3
-5
votes
2 answers
Why am I getting an "ArrayIndexoutofBound" error in my Java program?
need to understand flow of following progarm.
what should be the output?
when i compile this program i got "ArrayIndexoutofBound" error.
public class test {
public static void main(String args[]) {
Integer…

Raxit
- 11
- 1
-10
votes
4 answers
Integer.valueOf() static function
Integer b = Integer.valueOf("444",8);
System.out.println(b);
why b=292 I can't understand this static function
and when
b=Integer.valueOf("444",16);
System.out.println(b)
why b=1092
I appreciate your help
Thanks in advance

Menna-Allah Sami
- 580
- 4
- 19