当我尝试通过#r“ FsCheck”打开FsCheck命令打开FsCheck时,在.fsx文件中,出现此错误。
尝试使用谷歌搜索,但找不到任何答案可以解决我的问题。
#r“ FsCheck”-打开FsCheck ;;
->引用了“ / * / FsCheck.dll”(文件可能被F#Interactive进程锁定了)
我想知道是否可以在 Kotlin 中的一行中填充多个字段(只是为了更清晰的代码)
我的代码:
val evh = ExampleViewHolder(binding.root)
evh.mImageView = binding.myImageView
evh.mTextView1 = binding.text1
evh.mTextView2 = binding.text2
Run Code Online (Sandbox Code Playgroud)
我想实现这样的目标:
(evh.mImageView, evh.mTextView1, evh.mTextView2) = (binding.myImageView, binding.text1, binding.text2)
Run Code Online (Sandbox Code Playgroud)
这有点可能吗?