vote up 20 vote down star
1

The other day I was working on project, and ran into a weird bug. I called a function, and it was only returning the first character from the string which it should have been returning. After trying a hundred different things, refactoring my code, stepping through the code in the debugger many times, and even having a co-worker look into the problem, I finally, in a flash of genius, discovered the answer. Here's a sample piece of code to recreate the issue I was experiencing.

Public Function GetSomeStringValue(Value as Integer) As String
    ... Code Goes here
    Return Some_Multicharacter_string
End Function

And the function call looked like

SomeStringValue = GetSomeStringValue(Value)

At some point when I was refacting the code, and changed the function to get rid of the Value parameter, leaving it as follows

Public Function GetSomeStringValue() As String
    ... Code Goes here
    Return Some_Multicharacter_String
End Function

However, I neglected to remove the parameter that I was passing in when calling the function. The compiler didn't complain because it interpreted what I was actually doing was calling the function without brackets, as is a legacy feature from the VB6 days. And the Value parameter transformed into the array index of the string (aka character array) that was returned from the function.

So I removed the parameter, and everything worked fine. I'm posting this in hopes people will read it, and recognize the problem when if they ever encounter it, and are able to solve it much more quickly than I am. It took quite a while for me to solve, and I hope I can save others some time.

flag

47% accept rate
Another reason to dislike languages where arguments and array indexes look identical... – Jonathan Sep 27 '08 at 1:26
Wow, that's a seriously impressive gotcha. – Greg Hewgill Sep 27 '08 at 1:29
It shouldn't stay unanswered though – CheGueVerra Sep 27 '08 at 2:37
1  
I suggest that you edit the answer out of your question and post it as an Answer, so that others can more easily find the solution - thanks for the post! – JoshL Sep 27 '08 at 2:41
1  
Hi Kibbee, thanks for posting this very helpful piece of advice. However, it would be better if you reformatted the posting so it only contained the problem in the form of a question and then posted the solution in an answer. This way, you could mark it as “solved”. – Konrad Rudolph Oct 10 '08 at 19:02
show 2 more comments

2 Answers

vote up 1 vote down

I have to say this is pretty interesting. I've also run into the problem of being able to compile functions that should return something but don't. This annoys me no end

link|flag
vote up 1 vote down

Just to get the question from the 'unanswered' list:

The compiler didn't complain because it interpreted what the code was actually calling the function without brackets, as is a legacy feature from the VB6 days. And the Value parameter transformed into the array index of the string (aka character array) that was returned from the function.

link|flag

Your Answer

Get an OpenID
or

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