Found 33676 Articles for Programming

Explain the usage of Classes and the Benefits of Inheritance in Swift

Nitin Aggarwal
Updated on 21-Dec-2022 15:04:18

308 Views

Introduction This article will guide you about the usage of Class and what are the benefits of using inheritance in the Swift language. In this article, we will cover the following things − What is a class and what is its usage in Swift? What is inheritance and what are its benefits? What is a Class? In the Swift language, a class is a representation of properties and methods. We use classes to encapsulate properties and methods into a single entity that has the same characteristics. We use classes to store information in variables and constants. A class ... Read More

Explain the difference between functions and Methods in Swift

Nitin Aggarwal
Updated on 21-Dec-2022 14:58:46

607 Views

As an iOS developer, it is imperative to understand the difference between functions and methods in the Swift language. It might be confusing for you to understand the difference between function and method, but you might be thinking they are both the same. That's not true. They have some differences between them. Let's understand it in this article. In the Swift language, simply the methods are used in class, struct, and enum. While functions are defined independently. Basically, you can create a function anywhere in the code without creating a class or structure. Simply, we can say that each ... Read More

Designing patterns used during iOS app development

Nitin Aggarwal
Updated on 21-Dec-2022 14:51:22

646 Views

In this tutorial, you will get to know about some common design patterns that you should follow while making iOS apps. What are Swift Design Patterns? In Swift, design patterns make the development process easy for developers. A productive and effective work environment can be created by following the design patterns. An iOS design pattern is a set of repeatable methods for creating apps. What are the most common design patterns used in iOS development? Builder Facade MVC Singleton Viper MVVM Adaptor Observer Factory Method Let's talk about some of them to understand how they work − Algorithm ... Read More

Golang Program to Convert Character to String

Akhil Sharma
Updated on 22-Dec-2022 18:30:24

4K+ Views

In this article, we are going to learn about how to convert characters to string go programming language. Chars − Go language does not have a char data type on the contrary characters in go language are represented by rune data type. Rune represents a character value that is encoded in UTF-8 format. The size of the runes is 32-bits. Strings − String data type is used to store a sequence of characters. it can be in the form of literals or alphabets. The size of the string variable is 1 byte or 8 bits. There are two approaches to ... Read More

Swift Program to Sort the Elements of an Array in Descending Order

Ankita Saini
Updated on 20-Dec-2022 11:27:29

789 Views

In this article, we will learn how to write a swift program to sort the elements of an array in descending order. To sort the elements of an array Swift provides an in-built function named sort(by:). This function takes one argument and then sorts the array according to the condition passed in the by parameter. So to sort the array in descending order we pass > in the by the parameter of the sort(by:) function. Syntax func sort(by:) Here sort(by:) is an instance method. Which will sort the given sequence according to the value of by: parameter. Here ... Read More

Swift Program to Sort the Elements of an Array in Ascending Order

Ankita Saini
Updated on 20-Dec-2022 11:26:00

2K+ Views

In this article, we will learn how to write a swift program to sort the elements of an array in ascending order. Here we are going to use the following 2 methods: sort() function without parameter sort(by:) function with parameter To sort the elements of an array Swift provides an in-built function named sort(). This function can work with or without parameters. By default this function sort the array in ascending order. Otherwise, you can pass < in the by a parameter of the sort(by:) function to sort the array in ascending order. Method 1: sort() Function Without ... Read More

Swift Program to Remove All Occurrences of an Element in an Array

Ankita Saini
Updated on 20-Dec-2022 11:21:29

858 Views

In this article, we will learn how to write a swift program to remove all occurrences of an element in an array. So here we use the following methods − Using an inbuilt function Without using an inbuilt function Method 1: Using the removeAll() Function To remove all the occurrences of an element in an array we use a pre-defined function named removeAll(where:). This function removes all the elements from the given sequence that satisfy the given condition. For Example − Array = [2, 3, 5, 67, 2, 87, 2, 68] Element = 2 Output array = [3, 5, 67, ... Read More

Swift Program to Print an Array

Ankita Saini
Updated on 20-Dec-2022 11:17:05

5K+ Views

This article will teach us how to write a swift program to print an array. To print an array, we are using the following methods − Using array name Using for loop Using a while loop Using forEach() method Method 1: Print the array using the array name We can print an array by directly using the name of the array in the print function. Syntax Following is the syntax − print(arrayName) Here we simply pass the name of the array in the print function to display the array. Example The following Swift program shows how to print ... Read More

Swift Program to Print a 2D Array

Ankita Saini
Updated on 20-Dec-2022 11:04:39

2K+ Views

This article will teach us how to write a swift program to print a 2D array. Here we use the following methods − Using array name Using nested for loop Using subscript. Using forEach() method. Method 1: Print the 2D array using the array name We can print a 2D array by directly using the name of the array in the print function. Syntax Following is the syntax − print(arrayName) Here we simply pass the name of the array in the print function to display a 2D array. Example The following Swift program shows how to print ... Read More

Swift Program to Find the Transpose

Ankita Saini
Updated on 20-Dec-2022 16:14:36

552 Views

In this article, we will learn how to write a swift program to find the transpose of a matrix. Transpose of a matrix is calculated by interchange the rows of a matrix into columns or columns of a matrix into rows. For example, we have the following matrix: $$\mathrm{X\:=\:\begin{bmatrix} 13, & 59, & 32, & 67 ewline 23, & 56, &89, & 3 ewline 98, & 3, & 32, & 43 ewline 6, & 90, & 43, &23 \end{bmatrix}}$$ So the transpose of matrix X is − $$\mathrm{X^{T}\:=\:\begin{bmatrix} 13, & 23, & 98, & 6 ewline 59, ... Read More

Advertisements