Other New release: B4J v10.7 with optional parameters, jServer 5 and more

Erel

B4X founder
Staff member
Licensed User
Longtime User
I'm happy to release a new version of B4J.
The parser has undergone a major refactoring, resulting in performance improvements and providing the potential for new language features. The first one is optional parameters.

B4X:
'From:
Dim b() As Byte = "aaaa".GetBytes("UTF-8")
'''
Dim s As String = BytesToString(b, 0, b.Length, "UTF-8")

'To:
Dim b() As Byte = "aaaa".GetBytes
'''
Dim s As String = BytesToString(b)

'From:
Dim j As HttpJob
j.Initialize("", Me) 'unused JobName and always "Me"
j.Download(url)

'To:
Dim j As HttpJob
j.Initialize
j.Download(url)

Improvements:


Download link: https://www.b4x.com/b4j.html
 
Top