c中将数组传递给子函数_在C ++中将对象传递给Non-Member函数

该示例展示了如何在C++中定义一个非成员函数,该函数接收一个Number类的对象和一个整数作为参数。Number类包含一个私有数据成员num。通过非成员函数,可以从main()函数向类的数据成员传递数值。
摘要由CSDN通过智能技术生成

c中将数组传递给子函数

Here, we have to define a Non-Member Function, in which we have to pass an Object to the class in C++ programming language.

在这里,我们必须定义一个非成员函数,其中必须将一个Object传递给C ++编程语言的类。

What we are doing in this example?

在此示例中我们正在做什么?

  • We declared a class named Number that has a private data member named num.

    我们声明了一个名为Number的类,该类具有一个名为num的私有数据成员。

  • We define a Non Member function named myFunction(), that will take two parameters 1) object to class Number and 2) an integer variable number.

    我们定义了一个名为myFunction()的非成员函数,该函数将使用两个参数:1)对象为Number类,以及2)一个整数变量number 。

Using the example, We have to supply a number (from the main() function) to the class's data member using a Non-Member Function.

使用示例,我们必须使用非成员函数为类的数据成员提供一个数字(来自main()函数)。

Program:

程序:

#include <iostream>
using namespace std;

class Number
{
	private:
		int num;
		
	public:
	void setNum(int n)
	{
		num = n;
	}
	
	int getNum(void)
	{
		return num;
	}
};

//a non member function 
void myFunction(class Number N, int number)
{
	//calling setter function and asigning the number 
	N.setNum(number) ;
	//calling getter function and printing the value 
	cout<<"The value is: " << N.getNum() << endl;
}

//Main function
int main()
{
	//local variable of the main 
	int num;
	//object to Number class 
	Number objN;

	num = 10;
	
	//supplying this 'num' to the class by passing  
	//the name to the class in a non memberfunction
	myFunction (objN, num);
	
	return 0;
}

Output

输出量

The value is: 10


翻译自: https://www.includehelp.com/cpp-programs/passing-an-object-to-a-non-member-function-in-cpp.aspx

c中将数组传递给子函数

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值