帐户中的[Party]和[Party?]有什么区别?
以下是有关帐户的链接:https://github.com/corda/accounts/tree/release/pre/1/v4
我可以将[Party?]的对象转换为[Party]吗?
答案 0 :(得分:1)
[Party?]表示对象可以为null或[Party]类对象。这是Kotlin表示对象可以为null或特定对象的方法。
在代码中:
// Returns the Party which hosts the account specified by account ID.
fun hostForAccount(accountId: UUID): Party?
这基本上意味着返回类型可以为null或[Party]对象。
PS:[Party]是Corda类