Hi guys, why i can not use `this` to refer current...
# announcements
i
Hi guys, why i can not use
this
to refer current class’s function,
Copy code
res.forEach { dto ->
            dto.newAdd?.forEach { this::associationInfo }
            dto.canceled?.forEach { this::associationInfo }
        }
, but i changed to
Copy code
associationInfo(it)
works well