("জাভা", যেমন এখানে ব্যবহার করা হয়েছে, এটি স্ট্যান্ডার্ড জাভা এসই 7 হিসাবে সংজ্ঞায়িত করা হয়েছে ; "হাস্কেল", এখানে ব্যবহৃত হিসাবে স্ট্যান্ডার্ড হাস্কেল 2010 হিসাবে সংজ্ঞায়িত করা হয়েছে ।)
জাভা টাইপ সিস্টেমে যে জিনিস রয়েছে তবে হাস্কেলের তা নেই:
- নামমাত্র সাব টাইপ পলিমারফিজম
- আংশিক রানটাইম টাইপ তথ্য
হাস্কেলের টাইপ সিস্টেমে যে জিনিস রয়েছে তা জাভাতে নেই:
- সীমিত অ্যাডহক পলিমারফিজম
- "সীমাবদ্ধতা ভিত্তিক" সাব টাইপ পলিমারফিজমের উত্থান দেয়
- উচ্চতর ধরণের প্যারামেট্রিক পলিমারফিজম
- প্রধান টাইপিং
সম্পাদনা করুন:
উপরে তালিকাভুক্ত প্রতিটি পয়েন্টের উদাহরণ:
জাভা থেকে অনন্য (হাস্কেলের তুলনায়)
নামমাত্র সাব টাইপ পলিমারফিজম
/* declare explicit subtypes (limited multiple inheritance is allowed) */
abstract class MyList extends AbstractList<String> implements RandomAccess {
/* specify a type's additional initialization requirements */
public MyList(elem1: String) {
super() /* explicit call to a supertype's implementation */
this.add(elem1) /* might be overridden in a subtype of this type */
}
}
/* use a type as one of its supertypes (implicit upcasting) */
List<String> l = new ArrayList<>() /* some inference is available for generics */
আংশিক রানটাইম ধরণের তথ্য
/* find the outermost actual type of a value at runtime */
Class<?> c = l.getClass // will be 'java.util.ArrayList'
/* query the relationship between runtime and compile-time types */
Boolean b = l instanceOf MyList // will be 'false'
হাস্কেলের কাছে অনন্য (জাভার তুলনায়)
বাঁধা অ্যাড-হক পলিমারফিজম
-- declare a parametrized bound
class A t where
-- provide a function via this bound
tInt :: t Int
-- require other bounds within the functions provided by this bound
mtInt :: Monad m => m (t Int)
mtInt = return tInt -- define bound-provided functions via other bound-provided functions
-- fullfill a bound
instance A Maybe where
tInt = Just 5
mtInt = return Nothing -- override defaults
-- require exactly the bounds you need (ideally)
tString :: (Functor t, A t) => t String
tString = fmap show tInt -- use bounds that are implied by a concrete type (e.g., "Show Int")
"সীমাবদ্ধ ভিত্তিক" সাব টাইপ পলিমারফিজম (সীমাবদ্ধ অ্যাড-হক পলিমॉर्फিজমের উপর ভিত্তি করে)
-- declare that a bound implies other bounds (introduce a subbound)
class (A t, Applicative t) => B t where -- bounds don't have to provide functions
-- use multiple bounds (intersection types in the context, union types in the full type)
mtString :: (Monad m, B t) => m (t String)
mtString = return mtInt -- use a bound that is implied by another bound (implicit upcasting)
optString :: Maybe String
optString = join mtString -- full types are contravariant in their contexts
উচ্চতর ধরণের প্যারামেট্রিক পলিমারফিজম
-- parametrize types over type variables that are themselves parametrized
data OneOrTwoTs t x = OneVariableT (t x) | TwoFixedTs (t Int) (t String)
-- bounds can be higher-kinded, too
class MonadStrip s where
-- use arbitrarily nested higher-kinded type variables
strip :: (Monad m, MonadTrans t) => s t m a -> t m a -> m a
অধ্যক্ষ টাইপিং
এটির প্রত্যক্ষ উদাহরণ দেওয়া শক্ত, তবে এর অর্থ হল যে প্রতিটি অভিব্যক্তিতে হুবহু একটি সাধারণ ধরণের থাকে (যাকে তার মূল প্রকার বলা হয় ), যা এই অভিব্যক্তির ক্যানোনিকাল টাইপ হিসাবে বিবেচিত হয়। "সীমাবদ্ধতা ভিত্তিক" সাব টাইপ পলিমॉर्फিজম (উপরে দেখুন) এর ক্ষেত্রে, একটি অভিব্যক্তির মূল প্রকারটি হ'ল প্রতিটি সম্ভাব্য প্রকারের অনন্য উপপ্রকার যা সেই অভিব্যক্তি হিসাবে ব্যবহৃত হতে পারে। (অব্যক্ত) হাস্কেলতে প্রিন্সিপাল টাইপিংয়ের উপস্থিতি হ'ল সম্পূর্ণ টাইপ অনুমানের অনুমতি দেয় (এটি হ'ল প্রতিটি ধরণের অভিব্যক্তির জন্য সফল টাইপের অনুক্রম, কোনও প্রকারের টিকা ছাড়াই প্রয়োজন)। প্রিন্সিপাল টাইপিং (যার মধ্যে অনেকগুলি রয়েছে) ভঙ্গ করে এমন এক্সটেনশনগুলি প্রকারের অনুক্রমের সম্পূর্ণতাও ভেঙে দেয়।