- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我刚刚完成了我的第二门 OOP 类(class),我的第一门和第二门类(class)都是用 C# 教授的,但对于我的其余编程类(class),我们将使用 C++。具体来说,我们将使用可视化 C++ 编译器。问题是,我们需要自己学习 C++ 的基础知识,而不是从我们的教授那里过渡。所以,我想知道你们中是否有人知道一些我可以去学习 C++ 的好资源,来自 c# 背景?
我问这个是因为我注意到 C# 和 C++ 之间的许多差异,例如将 main
方法声明为 int,并返回 0,并且您的 main 方法并不总是包含在类中.另外,我注意到你所有的类都必须在你的主要方法之前编写,我听说这是因为 VC++ 从上到下遵守?
无论如何,你知道一些好的引用资料吗?
谢谢! (另外,有没有什么地方可以比较我用 C# 编写的简单程序,看看它们在 C++ 中会是什么样子,例如下面我编写的那个)?
using System;
using System.IO;
using System.Text; // for stringbuilder
class Driver
{
const int ARRAY_SIZE = 10;
static void Main()
{
PrintStudentHeader(); // displays my student information header
Console.WriteLine("FluffShuffle Electronics Payroll Calculator\n");
Console.WriteLine("Please enter the path to the file, either relative to your current location, or the whole file path\n");
int i = 0;
Console.Write("Please enter the path to the file: ");
string filePath = Console.ReadLine();
StreamReader employeeDataReader = new StreamReader(filePath);
Employee[] employeeInfo = new Employee[ARRAY_SIZE];
Employee worker;
while ((worker = Employee.ReadFromFile(employeeDataReader)) != null)
{
employeeInfo[i] = worker;
i++;
}
for (int j = 0; j < i; j++)
{
employeeInfo[j].Print(j);
}
Console.ReadLine();
}//End Main()
class Employee
{
const int TIME_AND_A_HALF_MARKER = 40;
const double FEDERAL_INCOME_TAX_PERCENTAGE = .20;
const double STATE_INCOME_TAX_PERCENTAGE = .075;
const double TIME_AND_A_HALF_PREMIUM = 0.5;
private int employeeNumber;
private string employeeName;
private string employeeStreetAddress;
private double employeeHourlyWage;
private int employeeHoursWorked;
private double federalTaxDeduction;
private double stateTaxDeduction;
private double grossPay;
private double netPay;
// -------------- Constructors ----------------
public Employee() : this(0, "", "", 0.0, 0) { }
public Employee(int a, string b, string c, double d, int e)
{
employeeNumber = a;
employeeName = b;
employeeStreetAddress = c;
employeeHourlyWage = d;
employeeHoursWorked = e;
grossPay = employeeHourlyWage * employeeHoursWorked;
if (employeeHoursWorked > TIME_AND_A_HALF_MARKER)
grossPay += (((employeeHoursWorked - TIME_AND_A_HALF_MARKER) * employeeHourlyWage) * TIME_AND_A_HALF_PREMIUM);
stateTaxDeduction = grossPay * STATE_INCOME_TAX_PERCENTAGE;
federalTaxDeduction = grossPay * FEDERAL_INCOME_TAX_PERCENTAGE;
}
// --------------- Setters -----------------
/// <summary>
/// The SetEmployeeNumber method
/// sets the employee number to the given integer param
/// </summary>
/// <param name="n">an integer</param>
public void SetEmployeeNumber(int n)
{
employeeNumber = n;
}
/// <summary>
/// The SetEmployeeName method
/// sets the employee name to the given string param
/// </summary>
/// <param name="s">a string</param>
public void SetEmployeeName(string s)
{
employeeName = s;
}
/// <summary>
/// The SetEmployeeStreetAddress method
/// sets the employee street address to the given param string
/// </summary>
/// <param name="s">a string</param>
public void SetEmployeeStreetAddress(string s)
{
employeeStreetAddress = s;
}
/// <summary>
/// The SetEmployeeHourlyWage method
/// sets the employee hourly wage to the given double param
/// </summary>
/// <param name="d">a double value</param>
public void SetEmployeeHourlyWage(double d)
{
employeeHourlyWage = d;
}
/// <summary>
/// The SetEmployeeHoursWorked method
/// sets the employee hours worked to a given int param
/// </summary>
/// <param name="n">an integer</param>
public void SetEmployeeHoursWorked(int n)
{
employeeHoursWorked = n;
}
// -------------- Getters --------------
/// <summary>
/// The GetEmployeeNumber method
/// gets the employee number of the currnt employee object
/// </summary>
/// <returns>the int value, employeeNumber</returns>
public int GetEmployeeNumber()
{
return employeeNumber;
}
/// <summary>
/// The GetEmployeeName method
/// gets the name of the current employee object
/// </summary>
/// <returns>the string, employeeName</returns>
public string GetEmployeeName()
{
return employeeName;
}
/// <summary>
/// The GetEmployeeStreetAddress method
/// gets the street address of the current employee object
/// </summary>
/// <returns>employeeStreetAddress, a string</returns>
public string GetEmployeeStreetAddress()
{
return employeeStreetAddress;
}
/// <summary>
/// The GetEmployeeHourlyWage method
/// gets the value of the hourly wage for the current employee object
/// </summary>
/// <returns>employeeHourlyWage, a double</returns>
public double GetEmployeeHourlyWage()
{
return employeeHourlyWage;
}
/// <summary>
/// The GetEmployeeHoursWorked method
/// gets the hours worked for the week of the current employee object
/// </summary>
/// <returns>employeeHoursWorked, as an int</returns>
public int GetEmployeeHoursWorked()
{
return employeeHoursWorked;
}
// End --- Getter/Setter methods
/// <summary>
/// The CalcSalary method
/// calculates the net pay of the current employee object
/// </summary>
/// <returns>netPay, a double</returns>
private double CalcSalary()
{
netPay = grossPay - stateTaxDeduction - federalTaxDeduction;
return netPay;
}
/// <summary>
/// The ReadFromFile method
/// reads in the data from a file using a given a streamreader object
/// </summary>
/// <param name="r">a streamreader object</param>
/// <returns>an Employee object</returns>
public static Employee ReadFromFile(StreamReader r)
{
string line = r.ReadLine();
if (line == null)
return null;
int empNumber = int.Parse(line);
string empName = r.ReadLine();
string empAddress = r.ReadLine();
string[] splitWageHour = r.ReadLine().Split();
double empWage = double.Parse(splitWageHour[0]);
int empHours = int.Parse(splitWageHour[1]);
return new Employee(empNumber, empName, empAddress, empWage, empHours);
}
/// <summary>
/// The Print method
/// prints out all of the information for the current employee object, uses string formatting
/// </summary>
/// <param name="checkNum">The number of the FluffShuffle check</param>
public void Print(int checkNum)
{
string formatStr = "| {0,-45}|";
Console.WriteLine("\n\n+----------------------------------------------+");
Console.WriteLine(formatStr, "FluffShuffle Electronics");
Console.WriteLine(formatStr, string.Format("Check Number: 231{0}", checkNum));
Console.WriteLine(formatStr, string.Format("Pay To The Order Of: {0}", employeeName));
Console.WriteLine(formatStr, employeeStreetAddress);
Console.WriteLine(formatStr, string.Format("In The Amount of {0:c2}", CalcSalary()));
Console.WriteLine("+----------------------------------------------+");
Console.Write(this.ToString());
Console.WriteLine("+----------------------------------------------+");
}
/// <summary>
/// The ToString method
/// is an override of the ToString method, it builds a string
/// using string formatting, and returns the built string. It particularly builds a string containing
/// all of the info for the pay stub of a sample employee check
/// </summary>
/// <returns>A string</returns>
public override string ToString()
{
StringBuilder printer = new StringBuilder();
string formatStr = "| {0,-45}|\n";
printer.AppendFormat(formatStr,string.Format("Employee Number: {0}", employeeNumber));
printer.AppendFormat(formatStr,string.Format("Address: {0}", employeeStreetAddress));
printer.AppendFormat(formatStr,string.Format("Hours Worked: {0}", employeeHoursWorked));
printer.AppendFormat(formatStr,string.Format("Gross Pay: {0:c2}", grossPay));
printer.AppendFormat(formatStr,string.Format("Federal Tax Deduction: {0:c2}", federalTaxDeduction));
printer.AppendFormat(formatStr,string.Format("State Tax Deduction: {0:c2}", stateTaxDeduction));
printer.AppendFormat(formatStr,string.Format("Net Pay: {0:c2}", CalcSalary()));
return printer.ToString();
}
}
最佳答案
C++ 和 C# 是不同的语言,具有不同的语义和规则。没有从一个切换到另一个的硬性快速方法。您将必须学习 C++。
为此,一些 resources to learn C++问题可能会给你有趣的建议。还搜索 C++ books - 查看 definitive C++ book guide and list ,例如。
无论如何,您都需要大量时间来学习 C++。 如果你的老师希望你突然知道 C++,那么你的学校就有严重的问题了。
关于c# - 从 C# 过渡到 C++,好的引用资料?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1904626/
#include using namespace std; class C{ private: int value; public: C(){ value = 0;
这个问题已经有答案了: What is the difference between char a[] = ?string?; and char *p = ?string?;? (8 个回答) 已关闭
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 7 年前。 此帖子已于 8 个月
除了调试之外,是否有任何针对 c、c++ 或 c# 的测试工具,其工作原理类似于将独立函数复制粘贴到某个文本框,然后在其他文本框中输入参数? 最佳答案 也许您会考虑单元测试。我推荐你谷歌测试和谷歌模拟
我想在第二台显示器中移动一个窗口 (HWND)。问题是我尝试了很多方法,例如将分辨率加倍或输入负值,但它永远无法将窗口放在我的第二台显示器上。 关于如何在 C/C++/c# 中执行此操作的任何线索 最
我正在寻找 C/C++/C## 中不同类型 DES 的现有实现。我的运行平台是Windows XP/Vista/7。 我正在尝试编写一个 C# 程序,它将使用 DES 算法进行加密和解密。我需要一些实
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
有没有办法强制将另一个 窗口置于顶部? 不是应用程序的窗口,而是另一个已经在系统上运行的窗口。 (Windows, C/C++/C#) 最佳答案 SetWindowPos(that_window_ha
假设您可以在 C/C++ 或 Csharp 之间做出选择,并且您打算在 Windows 和 Linux 服务器上运行同一服务器的多个实例,那么构建套接字服务器应用程序的最明智选择是什么? 最佳答案 如
你们能告诉我它们之间的区别吗? 顺便问一下,有什么叫C++库或C库的吗? 最佳答案 C++ 标准库 和 C 标准库 是 C++ 和 C 标准定义的库,提供给 C++ 和 C 程序使用。那是那些词的共同
下面的测试代码,我将输出信息放在注释中。我使用的是 gcc 4.8.5 和 Centos 7.2。 #include #include class C { public:
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我的客户将使用名为 annoucement 的结构/类与客户通信。我想我会用 C++ 编写服务器。会有很多不同的类继承annoucement。我的问题是通过网络将这些类发送给客户端 我想也许我应该使用
我在 C# 中有以下函数: public Matrix ConcatDescriptors(IList> descriptors) { int cols = descriptors[0].Co
我有一个项目要编写一个函数来对某些数据执行某些操作。我可以用 C/C++ 编写代码,但我不想与雇主共享该函数的代码。相反,我只想让他有权在他自己的代码中调用该函数。是否可以?我想到了这两种方法 - 在
我使用的是编写糟糕的第 3 方 (C/C++) Api。我从托管代码(C++/CLI)中使用它。有时会出现“访问冲突错误”。这使整个应用程序崩溃。我知道我无法处理这些错误[如果指针访问非法内存位置等,
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,因为
我有一些 C 代码,将使用 P/Invoke 从 C# 调用。我正在尝试为这个 C 函数定义一个 C# 等效项。 SomeData* DoSomething(); struct SomeData {
这个问题已经有答案了: Why are these constructs using pre and post-increment undefined behavior? (14 个回答) 已关闭 6
我是一名优秀的程序员,十分优秀!