vote up 2 vote down star

I just found this in some old code, and I'm not sure what it means.

Dim sTemp As String * 1

What is the * 1 at the end?

Thanks!

flag

3 Answers

vote up 9 vote down check

It means that the variable is a string of exactly one character in length.

Essentially, a fixed-length string.

link|flag
Are there performance benefits to doing that? – Matthew Cole Jan 7 at 18:55
No. It can help with some COM API's though. – le dorfier Jan 7 at 18:56
"Essentially, a fixed-length string." - In this case, also essentially a character ;) – Joel Coehoorn Jan 7 at 20:18
"Are there performance benefits to doing that?" Indeed there are because a fixed length string is a value type (a regular String is a reference type). There are drawbacks though due to lack of support in the VB model e.g. can't be used for subproc paramters or function return values. – onedaywhen Jan 8 at 10:53
vote up 3 vote down

It creates a fixed-length string. In that example, the variable will only ever contain one character.

link|flag
vote up 4 vote down

It's a fixed length string of one character. This was handy cause you could define a structure of fixed strings and read a file right into the structure.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.