سافت گذر دانشنامه نرم افزار - دانلود رایگان نرم افزار

همه دسته بندی ها

منو
آیکون جستجو در سایت سافت گذر
اطلاعیه های مهم سایت اطلاعیه های مهم سایت
💐 میلاد زینت پدر حضرت زینب سلام الله علیها مبارک باد 💐
 
 
  1. جهت رفع مشکل باز شدن سایت به دلیل بلاک توسط  نود 32 این ویدیو یا این ویدیو(ورژن 9 به بالا) یا راهنمای تصویری را مشاهده کنید
  2. اکانت های بروزرسانی نود32 با قیمت های مناسب به صورت یک ، سه ، شش و دوازده ماهه از اینجا قابل خرید می باشد.

نرم افزار های پرکاربرد

ثبت نام | ورود
Coursera - Functional Programming Principles in Scala

دانلود Coursera - Functional Programming Principles in Scala - فیلم آموزش اصول برنامه‌نویسی تابعی در اسکالا

دانلود فیلم آموزش اصول برنامه‌نویسی تابعی در اسکالا

توضیحات بیشتر

دانـلـود کـنـیـد

سرور آپدیت نود 32
دانلود Coursera - Functional Programming Principles in Scala مشاهده تصاویر بیشتر ...
مشاهده تصاویر بیشتر ...
تعداد مشاهده

12725مشاهده |

768رأی |

امتیاز :3.3

ناشر / تولید کننده:

Coursera

سیستم عامل / حجم فایل:

1/11 GB / همه ویندوزها

آخرین بروزرسانی:

اسکالا یکی از برترین بسترهای برنامه‌نویسی تابعی و شیء‌گرا می‌باشد که به کاربران امکان خلق برنامه‌های کارآمد را در یک پروسه‌ی سریع و غنی می‌دهد. برنامه‌نویسی تابعی که در دنیا تحت عنوان Functional Programming شناخته می‌شود بطور فزاینده‌ای در صنعت برنامه‌سازی در حال گسترش است؛ هر کسی نیز مهارت خلق اپلیکیشن‌های استاندارد با آن را ندارد چرا که این مهم حتماً نیازمند آموزش‌های زیربنایی می‌باشد. با توجه کافی و پرداخت عملی به مهارت‌های تدریس شده در این دوره‌ی آموزشی تصویری، بطور مفصل تکنیک‌ها و اصول برنامه‌نویسی تابعی در Scala را یاد خواهید گرفت.

 

محتوای آموزش:

1- درک اصول برنامه‌نویسی تابعی

2- نوشتن برنامه‌های تابعی با استفاده از توابع بازگشتی

3- تطابق الگو و توابع "مرتبه بالاتر"

4- ترکیب برنامه‌نویسی تابعی با آبجکت‌ها و کلاس‌ها

5- مباحث مربوط به Design Immutable Data Structures

6- مباحث مربوط به خواص توابع

7- درک انواع عمومی برای برنامه‌های کاربردی و تابعی

 

تولید کننده: Coursera

زبان: انگلیسی

سطح: متوسط

تعداد ویدئوها: 40 ویدئوی آموزشی بصورت جداگانه

مدرس: Martin Odersky, Professor

 

فهرست کامل سرفصل‌ها و عناوین آموزش:

Getting Started + Functions & Evaluation

Get up and running with Scala on your computer. Complete an example assignment to familiarize yourself with our unique way of submitting assignments. In this week, we'll learn the difference between functional imperative programming. We step through the basics of Scala; covering expressions, evaluation, conditionals, functions, and recursion

Video · Course Introduction

Video · Tools Setup for Linux

Video · Tools Setup for Mac OS X

Video · Tools Setup for Windows

Practice Programming Assignment · Example Assignment

Reading · Tools Setup (Please read)

Reading · Cheat Sheet

Reading · IntelliJ IDEA Tutorial

Reading · Eclipse Tutorial

Reading · SBT tutorial and Submission of Assignments (Please read)

Reading · Learning Resources

Reading · Scala Tutorial

Reading · Scala Style Guide

Video · Lecture 1.1 - Programming Paradigms

Video · Lecture 1.2 - Elements of Programming

Video · Lecture 1.3 - Evaluation Strategies and Termination

Video · Lecture 1.4 - Conditionals and Value Definitions

Video · Lecture 1.5 - Example: square roots with Newton's method

Video · Lecture 1.6 - Blocks and Lexical Scope

Video · Lecture 1.7 - Tail Recursion

Programming Assignment · Recursion


Higher Order Functions

This week, we'll learn about functions as first-class values, and higher order functions. We'll also learn about Scala's syntax and how it's formally defined. Finally, we'll learn about methods, classes, and data abstraction through the design of a data structure for rational numbers

Video · Lecture 2.1 - Higher-Order Functions

Video · Lecture 2.2 - Currying

Video · Lecture 2.3 - Example: Finding Fixed Points

Video · Lecture 2.4 - Scala Syntax Summary

Video · Lecture 2.5 - Functions and Data

Video · Lecture 2.6 - More Fun With Rationals

Video · Lecture 2.7 - Evaluation and Operators

Programming Assignment · Functional Sets

 

Data and Abstraction

This week, we'll cover traits, and we'll learn how to organize classes into hierarchies. We'll cover the hierarchy of standard Scala types, and see how to organize classes and traits into packages. Finally, we'll touch upon the different sorts of polymorphism in Scala

Video · Lecture 3.1 - Class Hierarchies

Video · Lecture 3.2 - How Classes Are Organized

Video · Lecture 3.3 - Polymorphism

Programming Assignment · Object-Oriented Sets

 

Types and Pattern Matching

This week we'll learn about the relationship between functions and objects in Scala; functions *are* objects! We'll zoom in on Scala's type system, covering subtyping and generics, and moving on to more advanced aspects of Scala's type system like variance. Finally, we'll cover Scala's most widely used data structure, Lists, and one of Scala's most powerful tools, pattern matching

Video · Lecture 4.1 - Objects Everywhere

Video · Lecture 4.2 - Functions as Objects

Video · Lecture 4.3 - Subtyping and Generics

Video · Lecture 4.4 - Variance (Optional)

Video · Lecture 4.5 - Decomposition

Video · Lecture 4.6 - Pattern Matching

Video · Lecture 4.7 - Lists

Programming Assignment · Huffman Coding

 

Lists

This week we dive into Lists, the most commonly-used data structure in Scala.

Video · Lecture 5.1 - More Functions on Lists

Video · Lecture 5.2 - Pairs and Tuples

Video · Lecture 5.3 - Implicit Parameters

Video · Lecture 5.4 - Higher-Order List Functions

Video · Lecture 5.5 - Reduction of Lists

Video · Lecture 5.6 - Reasoning About Concat

Video · Lecture 5.7 - A Larger Equational Proof on Lists

 

Collections

After a deep-dive into Lists, this week we'll explore other data structures; vectors, maps, ranges, arrays, and more. We'll dive into Scala's powerful and flexible for-comprehensions for querying data

Video · Lecture 6.1 - Other Collections

Video · Lecture 6.2 - Combinatorial Search and For-Expressions

Video · Lecture 6.3 - Combinatorial Search Example

Video · Lecture 6.4 - Maps

Video · Lecture 6.5 - Putting the Pieces Together

Video · Conclusion

Programming Assignment · Anagrams
VIP Members
Exclusive downloads for VIP members

Unlimited access for just $7.5/month (billed annually).

دسترسی لینک ها برای کاربران خارج از کشور امکان پذیر نیست! در صورت فعال بودن پروکسی آن را غیر فعال کنید.

لطفا آموزش‌های بیشتری از کورسرا رو قرار بدید. بیشتر در زمینه برنامه نویسی

سلام. خیلی خوبه که آموزش کورسرا رُ قرار دادین. لطفا این روند و ادامه بدین. ممنون.

شبکه کالا
فهرست نرم افزارهای مرتبط
مشاهده بقیه
هشتگ های مرتبط
حمایت مالی

حمایت از سافت گذر ❤️

تاکنون 0 نفر از ما حمایت کرده‌اند
امروز 0

با حمایت شما، هزاران کاربر دیگر هم از خدمات رایگان ما استفاده می‌کنند.
تیم سافت گذر از حمایت شما سپاسگزار است 🙏

حامی سافت گذر می‌شوم
سرور آپدیت نود 32
پیشنهاد سافت گذر
Weatherzone Plus 6.0.4 for Android +2.1

Weatherzone Plus 6.0.4 for Android +2.1

پیش بینی وضع آب و هوا

رسیدن به خواسته‌ها

رسیدن به خواسته‌ها

زندگی رؤیایی

QUBE-  Quick Understanding of Block Extrusion

QUBE- Quick Understanding of Block Extrusion

حل معمای پیچیده جعبه

سیستم عامل پیشرفته - ویندوز 7 و لینوکس دبیان

سیستم عامل پیشرفته - ویندوز 7 و لینوکس دبیان

windows 7 Linux

Grey Goo + Update 3

Grey Goo + Update 3

چنبرهٔ کبود | نسخهٔ نهایی دارای کرک سالم و معتبر

آموزش برنامه نویسی Crystal Report به زبان  VB

آموزش برنامه نویسی Crystal Report به زبان VB

آموزش کریستال ریپورت

کار با اکسل

کار با اکسل

آموزش تصویری اکسل 2019

Google Voice And Video Chat - Google Talk Plugin 5.41.3.0

Google Voice And Video Chat - Google Talk Plugin 5.41.3.0

چت صوتی و تصویری گوگل چت

راهنمای تحصیل و زندگی در مالزی

راهنمای تحصیل و زندگی در مالزی

آشنایی با کشور مالزی

Windroye 2.8.2a

Windroye 2.8.2a

نرم افزار اجرای برنامه های اندروید در ویندوز

برنامه نویسی اندروید نوشته‌ مهراد جاویدی

برنامه نویسی اندروید نوشته‌ مهراد جاویدی

سیستم عامل موبایل

ARES Commander 2026.2 SP2 Build 26.2.1.3150 / macOS 2016

ARES Commander 2026.2 SP2 Build 26.2.1.3150 / macOS 2016

نرم افزار قدرتمند CAD بر پایه DWG

Cartoon Camera Pro 1.2.2 for Android

Cartoon Camera Pro 1.2.2 for Android

عکسبرداری با افکت کارتونی

Brothers - A Tale of Two Sons

Brothers - A Tale of Two Sons

برادران - افسانه‌ی دو پسر

نخستین کتاب حدیث تاریخ اسلام

نخستین کتاب حدیث تاریخ اسلام

فضائل اهل بیت از زبان پیامبر اکرم صلّی الله علیه و آله

گلچین مولودی ولادت امام حسین (علیه السلام)

گلچین مولودی ولادت امام حسین (علیه السلام)

ولادت امام حسین علیه السلام

SlickEdit Pro 2024 29.0.2

SlickEdit Pro 2024 29.0.2

ویرایشگر کد حرفه‌ای

لباس اویس قرنی

لباس اویس قرنی

سفری جذاب و خواندنی از قندهار

Lynda - Creating a Responsive Website Design

Lynda - Creating a Responsive Website Design

فیلم آموزش طراحی و ساخت وبسایت واکنش‌گرا

Rainmeter 4.5.21 Build 3816

Rainmeter 4.5.21 Build 3816

شخصی سازی دسکتاپ

Cursed House 4 - Match 3 Game

Cursed House 4 - Match 3 Game

پازل Match 3

Mi Launcher 3.8.0 for Android +2.3

Mi Launcher 3.8.0 for Android +2.3

لانچر ساده و زیبای شرکت MiUi

نماهنگ «یا نبی سلام علیک»

نماهنگ «یا نبی سلام علیک»

نماهنگ ماهرزرین

!!QP Shooting - Dangerous

!!QP Shooting - Dangerous

تیراندازی‌های بی‌امان و خطرناک

File Expert Pro 8.3.0 / HD 2.3.0 for Android +4.1

File Expert Pro 8.3.0 / HD 2.3.0 for Android +4.1

فایل منیجر اچ دی

سخنرانی حجت الاسلام سید حسین مومنی با موضوع معرفت نسبت به وجود امام حسین (ع)

سخنرانی حجت الاسلام سید حسین مومنی با موضوع معرفت نسبت به وجود امام حسین (ع)

سخنرانی معرفت نسبت به وجود امام حسین (ع) با سید حسین مومنی

نهم دی، روز بصیرت از زبان آیت الله سید احمد علم الهدی

نهم دی، روز بصیرت از زبان آیت الله سید احمد علم الهدی

نهم دی، روز بصیرت از زبان آیت الله سید احمد علم الهدی

امت واحده اسلامی

امت واحده اسلامی

تحلیل گفتمان مقام معظم رهبری در موضوع اهل‌سنت

مطاعن علامه مجلسی

مطاعن علامه مجلسی

مطاعن

4G WiFi Maps & Speed Test (OpenSignal) 7.43.1.1 for Android +4.1

4G WiFi Maps & Speed Test (OpenSignal) 7.43.1.1 for Android +4.1

ردیابی آنتن شبکه در نقشه

Rohos Logon Key 5.3

Rohos Logon Key 5.3

قفل کامپیوتر با فلش مموری

Everywhere Launcher Pro 2.31 for Android +4.1

Everywhere Launcher Pro 2.31 for Android +4.1

لانچر محبوب

Auto Call Recorder Pro 7.1.1 for Android

Auto Call Recorder Pro 7.1.1 for Android

ضبط خودکار مکالمات

Call of Duty Ghosts +  Update 4 to 10

Call of Duty Ghosts + Update 4 to 10

ندای وظیفه ارواح

WiFi Pro FTP Server 2.0.9 for Android +4.0.0.2

WiFi Pro FTP Server 2.0.9 for Android +4.0.0.2

وای فای اف تی پی

Norton Utilities & Task Killer 2.6.5.313 for Android

Norton Utilities & Task Killer 2.6.5.313 for Android

یوتیلیتی کم حجم و قدرتمند نورتون

BREAK ARTS II + Updates

BREAK ARTS II + Updates

ربات های جنگی

Adobe Photoshop Elements 2019 17.0

Adobe Photoshop Elements 2019 17.0

ادوب فوتوشاپ المنت 2019

آموزش GIS

آموزش GIS

آموزش جی آی اس

Readiris PDF 25.2.25.0 / Corporate 23.1.95.0 / 17.4.192

Readiris PDF 25.2.25.0 / Corporate 23.1.95.0 / 17.4.192

تبدیل عکس به متن ریداریس

خبرنامه

با عضویت در خبرنامه، زودتر از همه باخبر باش!