Open
Kotlin - question 45
1
根据学生错题情况展开针对性加强教育。
Add a description, image, and links to the exam topic page so that developers can more easily learn about it.
To associate your repository with the exam topic, visit your repo's landing page and select "manage topics."
The real reason behind the code snippet not compiling is that
nameparameter for classCatshould be defined as a property (containval/varkeyword) otherwisefun greet()won't have access to it, thus giving unresolved reference error forthis.name.None of the provided answers are correct for this question.