Porting nullable GUIDs from C# to Java -
i porting c# code android platform. code makes heavy use of nullable guids. understand don't exist in java, best way implement feature? thinking of using "empty" guid (00000000-0000-0000-0000-000000000000) represent null value.
java.util.uuid
class in java, means reference type can have value null
. c# type can't represented in java non-nullable uuid.
Comments
Post a Comment