classRecyclerViewAdaptor(privatevalproductList:MutableList<Product>):RecyclerView.Adapter<RecyclerViewAdaptor.Holder>(){...privatefunformatPrice(price:Int):String{// 천 단위로 콤마(,) 찍어 표시해주는 함수valformatter=NumberFormat.getNumberInstance(Locale.getDefault())returnformatter.format(price)}...}
기존엔 Adaptor내에서만 사용했지만 다른Activity에서 사용하기 위해 공통적으로 사용할 수 있는 장소에 정의