You are not logged in.

birosys

Trainee

  • "birosys" is male
  • "birosys" started this thread

Posts: 48

Date of registration: Feb 9th 2009

Location: Mladenovac, Serbia

Occupation: Programming

Hobbies: Programming

  • Send private message

1

Monday, August 17th 2009, 11:13pm

String Class Question

Hi guys,

Question is: How Jabaco teat STRING? Like a object, or like a datatype?

Manuel

Administrator

  • "Manuel" is male

Posts: 256

Date of registration: Jul 16th 2008

Location: Erlangen, Germany

Occupation: Software Developer

Hobbies: Jabaco, game theory, text-mining

  • Send private message

2

Monday, August 17th 2009, 11:30pm

Quoted

Question is: How Jabaco teat STRING? Like a object, or like a datatype?


String is an object in the Java world. With Jabaco you can use it as object:

Jabaco Source

1
2
3
4
Dim test As New java#lang#String
test = test.concat("test1")
test = test.concat("test2")
MsgBox test


Or as datatype:

Jabaco Source

1
2
3
4
Dim test As String
test = test + "test1"
test = test + "test2"
MsgBox test

birosys

Trainee

  • "birosys" is male
  • "birosys" started this thread

Posts: 48

Date of registration: Feb 9th 2009

Location: Mladenovac, Serbia

Occupation: Programming

Hobbies: Programming

  • Send private message

3

Monday, August 17th 2009, 11:31pm

Thank's Manuel

Rate this thread
WoltLab Burning Board